25 lines
391 B
HTML
25 lines
391 B
HTML
{{ partial "head.html" . }}
|
|
{{ partial "navbar.html" . }}
|
|
{{ partial "header.html" . }}
|
|
{{ .Content }}
|
|
|
|
<hr />
|
|
<article>
|
|
<div class="content">
|
|
{{ with .Resources.Match "*.webp" }}
|
|
<div class="top-card">
|
|
<p>
|
|
{{ range first 15 . }}
|
|
<img src="{{ .RelPermalink }}">
|
|
{{ end }}
|
|
</p>
|
|
</div>
|
|
{{ end }}
|
|
</div>
|
|
</article>
|
|
|
|
</div>
|
|
{{ partial "footer.html" . }}
|
|
</body>
|
|
</html>
|