diff options
author | 2021-02-22 10:02:26 +0300 | |
---|---|---|
committer | 2021-02-22 10:02:26 +0300 | |
commit | 3dece70f5232fb25b74df027483d3dd18d8af8de (patch) | |
tree | 253f5d9b4c70ca1e5ef1602141a1f578536cfa76 /public/index.html | |
parent | Merge pull request #153 from python-discord/dependabot/npm_and_yarn/types/nod... (diff) |
Fixes Broken Links To Assets
Sets asset links to absolute paths, so they work on pages.
Signed-off-by: Hassan Abouelela <[email protected]>
Diffstat (limited to 'public/index.html')
-rw-r--r-- | public/index.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/public/index.html b/public/index.html index 4bf02d0..ca4f5ac 100644 --- a/public/index.html +++ b/public/index.html @@ -9,12 +9,12 @@ content="Python Discord Forms is the surveying system for the Python Discord server." /> - <link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png" /> - <link rel="mask-icon" href="branding/safari-pinned-tab.svg" color="#5bbad5" /> + <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" /> + <link rel="mask-icon" href="/branding/safari-pinned-tab.svg" color="#5bbad5" /> <meta name="msapplication-TileColor" content="#2d89ef" /> - <meta name="msapplication-config" content="branding/browserconfig.xml"> + <meta name="msapplication-config" content="/branding/browserconfig.xml"> - <link rel="manifest" href="manifest.json" /> + <link rel="manifest" href="/manifest.json" /> <title>Python Discord Forms</title> </head> <body> |