diff options
| author | Arda Serdar Pektezol <1669855+pektezol@users.noreply.github.com> | 2025-01-30 14:43:17 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-01-30 14:43:17 +0300 |
| commit | 681f7d3ba097cd8d204ff3ac4dae01432d323e5b (patch) | |
| tree | 8578439ebb74d6cefc2e07177689a40ed6b15464 /frontend/public/index.html | |
| parent | wr: finale 2 - 0 portals (#258) (diff) | |
| download | lphub-681f7d3ba097cd8d204ff3ac4dae01432d323e5b.tar.gz lphub-681f7d3ba097cd8d204ff3ac4dae01432d323e5b.tar.bz2 lphub-681f7d3ba097cd8d204ff3ac4dae01432d323e5b.zip | |
feat/frontend: dynamic title and meta descriptions (#261)
Diffstat (limited to 'frontend/public/index.html')
| -rw-r--r-- | frontend/public/index.html | 41 |
1 files changed, 20 insertions, 21 deletions
diff --git a/frontend/public/index.html b/frontend/public/index.html index 46a123a..37e27b7 100644 --- a/frontend/public/index.html +++ b/frontend/public/index.html | |||
| @@ -1,21 +1,18 @@ | |||
| 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 | <link rel="icon" href="%PUBLIC_URL%/favicon.ico" /> | 5 | <meta charset="utf-8" /> |
| 6 | <meta name="viewport" content="width=device-width, initial-scale=1" /> | 6 | <link rel="icon" href="%PUBLIC_URL%/favicon.ico" /> |
| 7 | <meta name="theme-color" content="#000000" /> | 7 | <meta name="viewport" content="width=device-width, initial-scale=1" /> |
| 8 | <meta | 8 | <meta name="theme-color" content="#000000" /> |
| 9 | name="description" | 9 | <link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" /> |
| 10 | content="Least Portals Hub" | 10 | <!-- |
| 11 | /> | ||
| 12 | <link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" /> | ||
| 13 | <!-- | ||
| 14 | manifest.json provides metadata used when your web app is installed on a | 11 | manifest.json provides metadata used when your web app is installed on a |
| 15 | user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/ | 12 | user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/ |
| 16 | --> | 13 | --> |
| 17 | <link rel="manifest" href="%PUBLIC_URL%/manifest.json" /> | 14 | <link rel="manifest" href="%PUBLIC_URL%/manifest.json" /> |
| 18 | <!-- | 15 | <!-- |
| 19 | Notice the use of %PUBLIC_URL% in the tags above. | 16 | Notice the use of %PUBLIC_URL% in the tags above. |
| 20 | It will be replaced with the URL of the `public` folder during the build. | 17 | It will be replaced with the URL of the `public` folder during the build. |
| 21 | Only files inside the `public` folder can be referenced from the HTML. | 18 | Only files inside the `public` folder can be referenced from the HTML. |
| @@ -24,12 +21,13 @@ | |||
| 24 | work correctly both with client-side routing and a non-root public URL. | 21 | work correctly both with client-side routing and a non-root public URL. |
| 25 | Learn how to configure a non-root public URL by running `npm run build`. | 22 | Learn how to configure a non-root public URL by running `npm run build`. |
| 26 | --> | 23 | --> |
| 27 | <title>Least Portals Hub</title> | 24 | <title>LPHUB</title> |
| 28 | </head> | 25 | </head> |
| 29 | <body> | 26 | |
| 30 | <noscript>You need to enable JavaScript to run this app.</noscript> | 27 | <body> |
| 31 | <div id="root"></div> | 28 | <noscript>You need to enable JavaScript to run this app.</noscript> |
| 32 | <!-- | 29 | <div id="root"></div> |
| 30 | <!-- | ||
| 33 | This HTML file is a template. | 31 | This HTML file is a template. |
| 34 | If you open it directly in the browser, you will see an empty page. | 32 | If you open it directly in the browser, you will see an empty page. |
| 35 | 33 | ||
| @@ -39,5 +37,6 @@ | |||
| 39 | To begin the development, run `npm start` or `yarn start`. | 37 | To begin the development, run `npm start` or `yarn start`. |
| 40 | To create a production bundle, use `npm run build` or `yarn build`. | 38 | To create a production bundle, use `npm run build` or `yarn build`. |
| 41 | --> | 39 | --> |
| 42 | </body> | 40 | </body> |
| 43 | </html> | 41 | |
| 42 | </html> \ No newline at end of file | ||