site/tem/html/pages/projects.html

27 lines
No EOL
472 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, $project := .Data.Projects }}
<div>
<a href="/project/{{ $hash }}">
<h2>{{ $project.Name }}</h2>
</a>
</div>
{{ end }}