redstrate.com/themes/red/layouts/_default/character.html

18 lines
314 B
HTML
Raw Normal View History

2022-12-27 21:47:12 -05:00
{{ define "main" }}
2024-02-17 22:04:30 -05:00
<h2>{{ .Title }}</h2>
<hr>
<table>
<tr>
<th>Age</th>
<td>{{ .Params.age }}</td>
</tr>
<tr>
<th>Pronouns</th>
<td>{{ .Params.pronouns }}</td>
</tr>
</table>
2022-12-27 22:34:31 -05:00
{{ partial "art-tag" . }}
2022-12-27 21:47:12 -05:00
{{ end }}