1
0
web/layouts/card/single.html

25 lines
387 B
HTML
Raw Normal View History

2024-04-05 08:44:02 +00:00
{{ 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 sort . }}
<img src="{{ .RelPermalink }}">
{{ end }}
</p>
</div>
{{ end }}
</div>
</article>
</div>
{{ partial "footer.html" . }}
</body>
</html>