diff options
author | EuAndreh <eu@euandre.org> | 2023-04-09 18:59:09 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2023-04-09 19:05:39 -0300 |
commit | 19a8b995c59cce5315e1d121054f9c27aad5c960 (patch) | |
tree | f2c2d83751245004beed21b31d973c1d412cd026 /v2/src/lib/preamble.html | |
parent | v2: CSS dark mode, including SVGs (diff) | |
download | euandre.org-19a8b995c59cce5315e1d121054f9c27aad5c960.tar.gz euandre.org-19a8b995c59cce5315e1d121054f9c27aad5c960.tar.xz |
v2: Support translated alternates in <nav>
Diffstat (limited to '')
-rw-r--r-- | v2/src/lib/preamble.html | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/v2/src/lib/preamble.html b/v2/src/lib/preamble.html index fc19961..1649bdd 100644 --- a/v2/src/lib/preamble.html +++ b/v2/src/lib/preamble.html @@ -19,10 +19,23 @@ <body> <header> <nav> - <ul> - <a href="$homepage_url">$author</a> - <a href="$about_url">$about</a> + <ul class="main-navigation-links"> + <li> + <a href="$homepage_url">$author</a> + </li> + <li> + <a href="$about_url">$about</a> + </li> </ul> + <ul class="collections-navigation-links"> + <li> + <a href="$index_til_url">$index_til_title</a> + </li> + <li> + <a href="$index_pastebin_url">$index_pastebin_title</a> + </li> + </ul> +$translations_html </nav> <hr /> </header> |