feat: Add blog part

This commit is contained in:
2022-01-14 12:33:54 +01:00
parent 8532d33e4e
commit 380bdcce72
11 changed files with 123 additions and 0 deletions

8
layouts/blog/list.html Normal file
View File

@ -0,0 +1,8 @@
{{ define "main" }}
{{ .Content }}
<ul>
{{ range .Pages }}
<li>{{ partial "article-link" . }}</li>
{{ end }}
</ul>
{{ end }}