diff options
author | Runxi Yu <me@runxiyu.org> | 2024-05-06 06:48:31 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2024-05-06 06:48:31 +0800 |
commit | 87fb388a6afbbd5ef2793f10bf878e6393793f4d (patch) | |
tree | 069c231bdf0bd5a97d787a33d213d0cfd551b04b /index.html | |
parent | 276d21ea5feff81aeca5a41a82bbfae53ee7013f (diff) | |
download | www-87fb388a6afbbd5ef2793f10bf878e6393793f4d.tar.gz |
Use relative paths
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/index.html b/index.html index 347548e..f262ec5 100644 --- a/index.html +++ b/index.html @@ -5,10 +5,10 @@ <meta charset="UTF-8" /> <title>Runxi Yu</title> - <link rel="stylesheet" href="/style.css" /> + <link rel="stylesheet" href="./style.css" /> <!-- <link rel="stylesheet" href="../source/oldstyle.css" /> --> - <link rel="icon" href="/favicon.ico" sizes="any" /> - <!-- <link rel="icon" href="/icon.svg" type="image/svg+xml" /> --> + <link rel="icon" href="./favicon.ico" sizes="any" /> + <!-- <link rel="icon" href="./icon.svg" type="image/svg+xml" /> --> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="theme-color" content="#241504" /> @@ -92,9 +92,9 @@ <footer> <ul role="list"> - <li><a href="/">Home</a></li> + <li><a href="./">Home</a></li> <li>Runxi Yu</li> - <li><a rel="license" href="/pubdom.html">Public Domain</a></li> + <li><a rel="license" href="./pubdom.html">Public Domain</a></li> </ul> </footer> </body> |