This repository has been archived on 2024-07-07. You can view files and clone it, but cannot push or open issues or pull requests.
bird.tacowolf.net/themes/avian/layouts/partials/nav.html

20 lines
965 B
HTML
Raw Normal View History

2023-06-22 20:46:19 -04:00
<h2 class="justify-self-center mx-auto text-center text-xl mb-10">
{{ with .Site.GetPage "/home" }}
2023-06-22 21:23:55 -04:00
<a href="{{ .Permalink }}" class="hover:text-lime-500 dark:hover:text-lime-500">{{ .Title }}</a>
2023-06-22 20:46:19 -04:00
{{ end }}|
{{ with .Site.GetPage "/about" }}
2023-06-22 21:23:55 -04:00
<a href="{{ .Permalink }}" class="hover:text-lime-500 dark:hover:text-lime-500">{{ .Title }}</a>
2023-06-22 20:46:19 -04:00
{{ end }}|
{{ with .Site.GetPage "/characters" }}
2023-06-22 21:23:55 -04:00
<a href="{{ .Permalink }}" class="hover:text-lime-500 dark:hover:text-lime-500">{{ .Title }}</a>
2023-06-22 20:46:19 -04:00
{{ end }}|
{{ with .Site.GetPage "/writing" }}
2023-06-22 21:23:55 -04:00
<a href="{{ .Permalink }}" class="hover:text-lime-500 dark:hover:text-lime-500">{{ .Title }}</a>
2023-06-22 20:46:19 -04:00
{{ end }}|
{{ with .Site.GetPage "/artwork" }}
2023-06-22 21:23:55 -04:00
<a href="{{ .Permalink }}" class="hover:text-lime-500 dark:hover:text-lime-500">{{ .Title }}</a>
2023-06-22 20:46:19 -04:00
{{ end }}|
{{ with .Site.GetPage "/links" }}
2023-06-22 21:23:55 -04:00
<a href="{{ .Permalink }}" class="hover:text-lime-500 dark:hover:text-lime-500">{{ .Title }}</a>
2023-06-22 20:46:19 -04:00
{{ end }}
</h2>