move character data to new pages under content subheading
This commit is contained in:
parent
f5172b1eb8
commit
7db06ee4d0
9 changed files with 85 additions and 31 deletions
8
content/characters/aeolus.md
Normal file
8
content/characters/aeolus.md
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
---
|
||||||
|
title: Aeolus, Green Catbird
|
||||||
|
name: Aeolus Viridis
|
||||||
|
age: young
|
||||||
|
race: gryphon
|
||||||
|
description: A green gryphon with a white belly and brown feline paws.
|
||||||
|
height: 90cm - 30cm
|
||||||
|
---
|
8
content/characters/akino.md
Normal file
8
content/characters/akino.md
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
---
|
||||||
|
title: Akino, Tiny Tinkerer
|
||||||
|
name: Akino Wikifoo
|
||||||
|
age: mid 20s
|
||||||
|
race: wolf + husky
|
||||||
|
description: An orange wolf-husky hybrid with a white belly and paws.
|
||||||
|
height: 12cm (varies)
|
||||||
|
---
|
8
content/characters/blanca.md
Normal file
8
content/characters/blanca.md
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
---
|
||||||
|
title: Blanca, Academic Mage
|
||||||
|
name: Blanca Grato
|
||||||
|
age: late 30s
|
||||||
|
race: snow leopard
|
||||||
|
description: A grey snow leopard with dark black spots and grey hair.
|
||||||
|
height: 162cm
|
||||||
|
---
|
8
content/characters/maricelle.md
Normal file
8
content/characters/maricelle.md
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
---
|
||||||
|
title: Maricelle, Live-In Librarian
|
||||||
|
name: Maricelle Kirakai
|
||||||
|
age: early 20s
|
||||||
|
race: mouse
|
||||||
|
description: A brown mouse with glasses.
|
||||||
|
height: 148cm
|
||||||
|
---
|
8
content/characters/terra.md
Normal file
8
content/characters/terra.md
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
---
|
||||||
|
title: Terra, Equine Veterinarian
|
||||||
|
name: Terra Viridis
|
||||||
|
age: early 40s
|
||||||
|
race: pegasus
|
||||||
|
description: A brown pegasus with a green muzzle.
|
||||||
|
height: 178cm
|
||||||
|
---
|
|
@ -1,31 +0,0 @@
|
||||||
characters:
|
|
||||||
aeolus:
|
|
||||||
name: Aeolus Viridis
|
|
||||||
age: catbird
|
|
||||||
race: gryphon
|
|
||||||
description: A green gryphon with a white belly and brown feline paws.
|
|
||||||
height: 90cm - 30cm
|
|
||||||
akino:
|
|
||||||
name: Akino Wikifoo
|
|
||||||
age: mid 20s
|
|
||||||
race: wolf + husky
|
|
||||||
description: An orange wolf-husky hybrid with a white belly and paws.
|
|
||||||
height: 12cm (varies)
|
|
||||||
blanca:
|
|
||||||
name: Blanca Grato
|
|
||||||
age: late 30s
|
|
||||||
race: snow leopard
|
|
||||||
description: A grey snow leopard with dark black spots and grey hair.
|
|
||||||
height: 162cm
|
|
||||||
maricelle:
|
|
||||||
name: Maricelle Kiritsu
|
|
||||||
age: early 20s
|
|
||||||
race: mouse
|
|
||||||
description: A brown mouse with glasses.
|
|
||||||
height: 148cm
|
|
||||||
terra:
|
|
||||||
name: Terra Viridis
|
|
||||||
age: early 40s
|
|
||||||
race: pegasus
|
|
||||||
description: A brown pegasus with a green muzzle.
|
|
||||||
height: 178cm
|
|
|
@ -0,0 +1,17 @@
|
||||||
|
{{ define "main" }}
|
||||||
|
<main>
|
||||||
|
<article>
|
||||||
|
<header>
|
||||||
|
<h1>{{.Title}}</h1>
|
||||||
|
</header>
|
||||||
|
{{.Content}}
|
||||||
|
</article>
|
||||||
|
<ul>
|
||||||
|
{{ range .Pages }}
|
||||||
|
<li>
|
||||||
|
<a href="{{.Permalink}}">{{.Title}}</a>
|
||||||
|
</li>
|
||||||
|
{{ end }}
|
||||||
|
</ul>
|
||||||
|
</main>
|
||||||
|
{{ end }}
|
|
@ -0,0 +1,10 @@
|
||||||
|
{{ define "main" }}
|
||||||
|
<section id="main">
|
||||||
|
<h1 id="title">{{ .Title }}</h1>
|
||||||
|
<div>
|
||||||
|
<article id="content">
|
||||||
|
{{ .Content }}
|
||||||
|
</article>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
{{ end }}
|
18
themes/birdspace/layouts/characters/list.html
Normal file
18
themes/birdspace/layouts/characters/list.html
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
{{ define "main" }}
|
||||||
|
<main>
|
||||||
|
<article>
|
||||||
|
<header>
|
||||||
|
<h1>{{.Title}}</h1>
|
||||||
|
</header>
|
||||||
|
{{.Content}}
|
||||||
|
</article>
|
||||||
|
<ul>
|
||||||
|
{{ range .Pages }}
|
||||||
|
<li>
|
||||||
|
<a href="{{.Permalink}}"><h3 >{{.Name}}</h3> </a>
|
||||||
|
<p> {{.Description}} </p>
|
||||||
|
</li>
|
||||||
|
{{ end }}
|
||||||
|
</ul>
|
||||||
|
</main>
|
||||||
|
{{ end }}
|
Reference in a new issue