1
0
web/layouts/card/single.html
2024-04-05 17:44:02 +09:00

25 lines
387 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 sort . }}
<img src="{{ .RelPermalink }}">
{{ end }}
</p>
</div>
{{ end }}
</div>
</article>
</div>
{{ partial "footer.html" . }}
</body>
</html>