Files
vkane.cz/layouts/projects/list.html
Vojtěch Káně e908551eca Initial commit
2021-06-01 17:45:59 +02:00

29 lines
733 B
HTML

{{ define "header" }}
{{ partialCached "header.html" . }}
{{ end }}
{{ define "main" }}
<main class="site-main section-inner thin animated fadeIn faster">
<h1>{{ .Title }}</h1>
{{- if .Content }}
<div class="content">
{{ .Content }}
</div>
{{- end }}
{{- range .Pages }}
<article class="content" style="border-bottom: 2px solid $text;{{/* TODO move to stylesheet */}}">
<h2 class="title">{{.Title}}</h2>
<ul>
{{ with .Params.source }}<li><a href="{{ . }}">Source code</a></li>{{ end }}
{{ with .Params.demo }}<li><a href="{{ . }}">Demo</a></li>{{ end }}
</ul>
<p>{{.Content}}</p>
</article>
{{- end }}
</main>
{{ end }}
{{ define "footer" }}
{{ partialCached "footer.html" . }}
{{ end }}