1
0
This commit is contained in:
2024-04-21 16:44:03 +09:00
parent 2fc8f72889
commit 377b84b858
2166 changed files with 353 additions and 372911 deletions

24
layouts/item/single.html Normal file
View File

@ -0,0 +1,24 @@
{{ partial "head-blog.html" . }}
{{ partial "navbar.html" . }}
{{ partial "header.html" . }}
<article>
<div class="content">
<h1>{{ .Title }}</h1>
{{ .Content }}
{{ with .Resources.Match "*.jpg" }}
<div class="top-item">
<p>
{{ range . }}
<img src="{{ .RelPermalink }}">
{{ end }}
</p>
</div>
{{ end }}
</div>
</article>
</div>
{{ partial "footer.html" . }}
</body>
</html>