actual lists support
parent
c0a92aac5c
commit
34812e909e
|
@ -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.
|
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** 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/)
|
|
|
@ -15,16 +15,13 @@
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
<nav>
|
<nav>
|
||||||
<ul>
|
<ul>{{ range .Site.Menus.main }}
|
||||||
{{ range .Site.Menus.main }}
|
<li><a href="{{ .URL | relURL }}">{{ .Name }}</a></li>{{ end }}
|
||||||
<li><a href="{{ .URL | relURL }}">{{ .Name }}</a></li>
|
|
||||||
{{ end }}
|
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
</header>
|
</header>
|
||||||
<article>
|
<article>
|
||||||
<h1>{{.Title}}</h1>
|
{{ block "main" . }} {{ end }}
|
||||||
{{.Content}}
|
|
||||||
</article>
|
</article>
|
||||||
<hr/>
|
<hr/>
|
||||||
<footer>
|
<footer>
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
{{define "main"}}
|
||||||
|
<h1>{{.Title}}</h1>
|
||||||
|
{{.Content}}
|
||||||
|
<ul>{{ range .Pages }}
|
||||||
|
<li><a href="{{.Permalink}}">{{.Title}}</a></li>{{ end }}
|
||||||
|
</ul>
|
||||||
|
{{ end }}
|
|
@ -1,4 +0,0 @@
|
||||||
{{ define "main" }}
|
|
||||||
<h1>{{ .Title }}</h1>
|
|
||||||
{{ .Content }}
|
|
||||||
{{ end }}
|
|
Loading…
Reference in New Issue