actual lists support

main
Síle Ekaterin Liszka 2022-11-13 08:17:46 -08:00
parent c0a92aac5c
commit 34812e909e
4 changed files with 10 additions and 17 deletions

View File

@ -5,10 +5,3 @@ description: A set of documents describing the Amethyst system.
The Amethyst system is a **median** system, meaning that the alters, the individuals comprising the system, have significant overlap.
**Amethyst** was chosen because the metaphor we use to describe ourself is a gemstone, and both because of that and because we're a median system, our alters are called 'facets'. Except for Amethyst itself, the core, all of our facets are furries.
* [Amethyst](amethyst/)
* [Síle](sheila/)
* [Cuán](cuan/)
* [Ingrid](ingrid/)
* [Jadwiga](jadwiga/)
* [Otchłań](otchlan/)

View File

@ -15,16 +15,13 @@
<body>
<header>
<nav>
<ul>
{{ range .Site.Menus.main }}
<li><a href="{{ .URL | relURL }}">{{ .Name }}</a></li>
{{ end }}
<ul>{{ range .Site.Menus.main }}
<li><a href="{{ .URL | relURL }}">{{ .Name }}</a></li>{{ end }}
</ul>
</nav>
</header>
<article>
<h1>{{.Title}}</h1>
{{.Content}}
{{ block "main" . }} {{ end }}
</article>
<hr/>
<footer>

View File

@ -0,0 +1,7 @@
{{define "main"}}
<h1>{{.Title}}</h1>
{{.Content}}
<ul>{{ range .Pages }}
<li><a href="{{.Permalink}}">{{.Title}}</a></li>{{ end }}
</ul>
{{ end }}

View File

@ -1,4 +0,0 @@
{{ define "main" }}
<h1>{{ .Title }}</h1>
{{ .Content }}
{{ end }}