spanish-quizzer

An app to quiz you on Spanish vocabulary and verb conjugations
git clone https://git.ashermorgan.net/spanish-quizzer/
Log | Files | Refs | README

index.html (2464B)


      1 <!DOCTYPE html>
      2 <html lang="en">
      3     <head>
      4         <meta charset="utf-8"/>
      5         <title>Spanish-Quizzer</title>
      6         <meta name="description" content="Quiz yourself on Spanish vocabulary and conjugations through a free and highly customizable web interface.">
      7         <meta name="viewport" content="width=device-width">
      8         <meta name="theme-color" content="#009bc2">
      9         <link rel="manifest" href="manifest.json">
     10         <link rel="icon" type="image/png" href="images/favicon-32.png">
     11         <link rel="apple-touch-icon" sizes="180x180" href="images/favicon-180.png">
     12         <link rel="stylesheet" href="vendor/data-table.min.css">
     13         <link rel="stylesheet" href="css/global.css">
     14         <link rel="stylesheet" href="css/app.css">
     15         <link rel="stylesheet" href="css/filtersPage.css">
     16         <link rel="stylesheet" href="css/settingsPage.css">
     17         <link rel="stylesheet" href="css/quizzer.css">
     18         <link rel="stylesheet" href="css/reference.css">
     19         <script src="vendor/diff.js"></script>
     20         <script src="vendor/data-table.min.js"></script>
     21         <script src="vendor/papaparse.js"></script>
     22         <script src="vendor/vue.js"></script>
     23         <script src="vendor/vue-router.js"></script>
     24         <script src="js/global.js"></script>
     25         <script src="js/filters.js"></script>
     26         <script src="js/filtersPage.js"></script>
     27         <script src="js/settingsPage.js"></script>
     28         <script src="js/quizzer.js"></script>
     29         <script src="js/reference.js"></script>
     30         <script src="js/app.js"></script>
     31     </head>
     32 
     33     <body onload="Load();">
     34         <div id="app">
     35             <noscript>
     36                 <header>Spanish-Quizzer</header>
     37                 <div id="jsError">
     38                     <h1>You must have JavaScript enabled to run Spanish-Quizzer.</h1>
     39                     <p>Spanish-Quizzer uses JavaScript to load vocab, apply filters, and check your answers.</p>
     40                 </div>
     41             </noscript>
     42 
     43             <keep-alive exclude="quizzerPage">
     44                 <router-view @back="Back"></router-view>
     45             </keep-alive>
     46         </div>
     47 
     48         <script>
     49             // Register service worker
     50             if ("serviceWorker" in navigator && (localStorage.getItem("service-worker") === "true" || !window.location.href.includes("localhost"))) {
     51                 navigator.serviceWorker.register("./service-worker.js");
     52             }
     53         </script>
     54     </body>
     55 </html>