site/tem/html/pages/games.html

27 lines
No EOL
460 B
HTML

{{ template "head.html" .}}
<div style='height: 44px; width: 100%;'></div>
<div
style="
display: flex;
align-items: baseline;
width: 100%;
justify-content: left;
padding-left: 12px;
"
>
<h1 style='word-wrap: break-word; hyphens: auto;'>
{{ .Title }}
</h1>
<p>{{ .Desc }}</p>
</div>
{{ range $hash, $game := .Data.Games }}
<div>
<a href="/game/{{ $hash }}">
<h2>{{ $game.Name }}</h2>
</a>
</div>
{{ end }}