20 lines
953 B
HTML
20 lines
953 B
HTML
|
<h2 class="justify-self-center mx-auto text-center text-xl mb-10">
|
||
|
{{ with .Site.GetPage "/home" }}
|
||
|
<a href="{{ .Permalink }}" class="hover:text-sky-500 dark:hover:text-sky-500">{{ .Title }}</a>
|
||
|
{{ end }}|
|
||
|
{{ with .Site.GetPage "/about" }}
|
||
|
<a href="{{ .Permalink }}" class="hover:text-sky-500 dark:hover:text-sky-500">{{ .Title }}</a>
|
||
|
{{ end }}|
|
||
|
{{ with .Site.GetPage "/characters" }}
|
||
|
<a href="{{ .Permalink }}" class="hover:text-sky-500 dark:hover:text-sky-500">{{ .Title }}</a>
|
||
|
{{ end }}|
|
||
|
{{ with .Site.GetPage "/writing" }}
|
||
|
<a href="{{ .Permalink }}" class="hover:text-sky-500 dark:hover:text-sky-500">{{ .Title }}</a>
|
||
|
{{ end }}|
|
||
|
{{ with .Site.GetPage "/artwork" }}
|
||
|
<a href="{{ .Permalink }}" class="hover:text-sky-500 dark:hover:text-sky-500">{{ .Title }}</a>
|
||
|
{{ end }}|
|
||
|
{{ with .Site.GetPage "/links" }}
|
||
|
<a href="{{ .Permalink }}" class="hover:text-sky-500 dark:hover:text-sky-500">{{ .Title }}</a>
|
||
|
{{ end }}
|
||
|
</h2>
|