fix: change date layout for character creation
This commit is contained in:
parent
083e22ed8b
commit
6493784e2d
7 changed files with 26 additions and 2 deletions
|
@ -1,6 +1,7 @@
|
|||
+++
|
||||
title = "characters"
|
||||
description = "all of the creatures inside of taco's head"
|
||||
type = "character"
|
||||
+++
|
||||
|
||||
|Forename |Surname |Pronouns|Gender presentation|Genetic ancestry |Primary feature|Secondary feature |Hair style |Hair color |Age |Natural Height (cm)|Current Height (cm)|Has A Penis|Has A Vulva|Has Breasts|
|
||||
|
|
|
@ -5,6 +5,7 @@ age = "young"
|
|||
race = "gryphon"
|
||||
description = "A green gryphon with a white belly and brown feline paws."
|
||||
height = "90cm - 30cm"
|
||||
publishDate = "2013-07-06"
|
||||
+++
|
||||
|
||||
Aeolus Viridis is a little green gryphon who loves to snuggle and is happy to
|
||||
|
|
|
@ -5,12 +5,14 @@ age = "mid 20s"
|
|||
race = "maned wolf + husky"
|
||||
description = "An orange wolf-husky hybrid with a white belly and dark brown paws."
|
||||
height = "12cm (varies)"
|
||||
publishDate = "2016-07-17"
|
||||
+++
|
||||
|
||||
[tba]
|
||||
|
||||
Akino is a magitech architect, tinkerer, and a dwindled down maned wusky.
|
||||
<!--more-->
|
||||
|
||||
Akino is a orange and white maned wolf/husky hybrid. He naturally stood at 170cm (5'7") tall but, due to magical interference beyond his control, now stands at a natural 12cm (4-5") tall (on a good day). His curly tail was about 7 inches long, but now barely sits at 1 cm long.
|
||||
|
||||
## early life and education
|
||||
[to be added]
|
||||
|
||||
|
|
|
@ -5,6 +5,7 @@ age = "late 30s"
|
|||
race = "snow leopard"
|
||||
description = "A grey snow leopard with dark black spots and grey hair."
|
||||
height = "162cm"
|
||||
publishDate = "2016-07-17"
|
||||
+++
|
||||
|
||||
Blanca Grato is an experienced mage, literary editor, and spotted kitty.
|
||||
|
|
|
@ -5,6 +5,7 @@ age = "early 20s"
|
|||
race = "mouse"
|
||||
description = "A brown mouse with glasses who lives in a library."
|
||||
height = "148cm"
|
||||
publishDate = "2016-07-17"
|
||||
+++
|
||||
|
||||
Maricelle Kirakai is a librarian, scholar, and huge nerd.
|
||||
|
|
|
@ -5,6 +5,7 @@ age = "early 40s"
|
|||
race = "pegasus"
|
||||
description = "A brown pegasus with a green muzzle."
|
||||
height = "178cm"
|
||||
publishDate = "2011-12-16"
|
||||
+++
|
||||
|
||||
Terra Viridis is a veterinarian, researcher, explorer, and father.
|
||||
|
|
17
themes/aviary/layouts/character/list.html
Normal file
17
themes/aviary/layouts/character/list.html
Normal file
|
@ -0,0 +1,17 @@
|
|||
{{ define "main" }}
|
||||
<h1>{{ .Title }}</h1>
|
||||
{{ .Content }}
|
||||
{{ range sort (.Pages) "Title" }}
|
||||
<h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
|
||||
{{ .Summary }}
|
||||
{{ $dateHuman := .Date.Format "January 2, 2006" }}
|
||||
{{ $dateMachine := .Date.Format "2006-01-02T15:04:05-07:00" }}
|
||||
{{ $lastUpdated := .Lastmod.Format "January 2, 2006" }}
|
||||
{{ $lastMachine := .Lastmod.Format "2006-01-02T15:04:05-07:00" }}
|
||||
<p><b>reading time:</b> {{ lower .ReadingTime }} mins</p>
|
||||
<p><b>created:</b> <time datetime="{{ $dateMachine }}">{{ lower $dateHuman }}</time></p>
|
||||
{{ if ne $lastUpdated $dateHuman }}
|
||||
<p><b>last updated:</b> <time datetime="{{ $lastMachine }}">{{ lower $lastUpdated }}</time></p>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
{{ end }}
|
Loading…
Reference in a new issue