1
0
web/layouts/card/single.html
2024-04-26 22:56:34 +09:00

25 lines
415 B
HTML

{{ partial "head-blog.html" . }}
{{ partial "navbar.html" . }}
{{ partial "header.html" . }}
<article>
<div class="content">
<h1>{{ .Title }}</h1>
{{ .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>