diff options
| -rw-r--r-- | public/index.html | 45 |
1 files changed, 21 insertions, 24 deletions
diff --git a/public/index.html b/public/index.html index 4b04eb7..e55e0e7 100644 --- a/public/index.html +++ b/public/index.html | |||
| @@ -1,20 +1,19 @@ | |||
| 1 | <!DOCTYPE html> | 1 | <!DOCTYPE html> |
| 2 | <html lang="en"> | 2 | <html lang="en"> |
| 3 | <head> | 3 | |
| 4 | <meta charset="utf-8" /> | 4 | <head> |
| 5 | <meta name="viewport" content="width=device-width, initial-scale=1" /> | 5 | <meta charset="utf-8" /> |
| 6 | <meta name="theme-color" content="#000000" /> | 6 | <meta name="viewport" content="width=device-width, initial-scale=1" /> |
| 7 | <meta | 7 | <meta name="theme-color" content="#000000" /> |
| 8 | name="description" | 8 | <meta name="description" |
| 9 | content="Print a simple card with your WiFi login details. Tape it to the fridge, keep it in your wallet, etc." | 9 | content="Print a simple card with your WiFi login details. Tape it to the fridge, keep it in your wallet, etc." /> |
| 10 | /> | 10 | <link rel="icon" href="./images/wifi.ico" /> |
| 11 | <link rel="icon" href="./images/wifi.ico" /> | 11 | <!-- |
| 12 | <!-- | ||
| 13 | manifest.json provides metadata used when your web app is installed on a | 12 | manifest.json provides metadata used when your web app is installed on a |
| 14 | user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/ | 13 | user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/ |
| 15 | --> | 14 | --> |
| 16 | <link rel="manifest" href="%PUBLIC_URL%/manifest.json" /> | 15 | <link rel="manifest" href="%PUBLIC_URL%/manifest.json" /> |
| 17 | <!-- | 16 | <!-- |
| 18 | Notice the use of %PUBLIC_URL% in the tags above. | 17 | Notice the use of %PUBLIC_URL% in the tags above. |
| 19 | It will be replaced with the URL of the `public` folder during the build. | 18 | It will be replaced with the URL of the `public` folder during the build. |
| 20 | Only files inside the `public` folder can be referenced from the HTML. | 19 | Only files inside the `public` folder can be referenced from the HTML. |
| @@ -23,17 +22,15 @@ | |||
| 23 | work correctly both with client-side routing and a non-root public URL. | 22 | work correctly both with client-side routing and a non-root public URL. |
| 24 | Learn how to configure a non-root public URL by running `npm run build`. | 23 | Learn how to configure a non-root public URL by running `npm run build`. |
| 25 | --> | 24 | --> |
| 26 | <title>WiFi Card</title> | 25 | <title>WiFi Card</title> |
| 27 | </head> | 26 | </head> |
| 28 | 27 | ||
| 29 | <body> | 28 | <body> |
| 30 | <noscript | 29 | <noscript>You need to enable JavaScript to run this app. Feel free to view the |
| 31 | >You need to enable JavaScript to run this app. Feel free to view the | 30 | <a href="https://github.com/bndw/wifi-card">source code</a>.</noscript> |
| 32 | <a href="https://github.com/bndw/wifi-card">source code</a>.</noscript | ||
| 33 | > | ||
| 34 | 31 | ||
| 35 | <div id="root"></div> | 32 | <div id="root"></div> |
| 36 | <!-- | 33 | <!-- |
| 37 | This HTML file is a template. | 34 | This HTML file is a template. |
| 38 | If you open it directly in the browser, you will see an empty page. | 35 | If you open it directly in the browser, you will see an empty page. |
| 39 | 36 | ||
| @@ -43,8 +40,6 @@ | |||
| 43 | To begin the development, run `npm start` or `yarn start`. | 40 | To begin the development, run `npm start` or `yarn start`. |
| 44 | To create a production bundle, use `npm run build` or `yarn build`. | 41 | To create a production bundle, use `npm run build` or `yarn build`. |
| 45 | --> | 42 | --> |
| 46 | </body> | ||
| 47 | |||
| 48 | <script> | 43 | <script> |
| 49 | // Internet Explorer 6-11 | 44 | // Internet Explorer 6-11 |
| 50 | const isIE = /*@cc_on!@*/ false || !!document.documentMode; | 45 | const isIE = /*@cc_on!@*/ false || !!document.documentMode; |
| @@ -55,4 +50,6 @@ | |||
| 55 | document.body.style.fontSize = '50px'; | 50 | document.body.style.fontSize = '50px'; |
| 56 | } | 51 | } |
| 57 | </script> | 52 | </script> |
| 58 | </html> | 53 | </body> |
| 54 | |||
| 55 | </html> \ No newline at end of file | ||
