Add Events and Favicons

This commit is contained in:
2023-11-06 10:24:36 +00:00
parent c768ec65d2
commit 66e3f10e6d
23 changed files with 209 additions and 15 deletions

View File

@@ -10,17 +10,10 @@
{{ .Content }}
{{- range .Data.Pages.GroupByDate "2006" }}
<div class="posts-group">
<h3 id="{{ .Key }}">{{ .Key }}
</div>
<ul class="posts-list">
<h3 id="{{ .Key }}">{{ .Key }}</h3>
<ul>
{{- range .Pages }}
<li class="post-item">
<a href="{{.Permalink}}">
<span class="post-title">{{.Title}}</span>
<span class="post-day">{{ .Date.Format "2006-01-01" }}</span>
</a>
</li>
<li><a href="{{.Permalink}}">{{.Title}}</a></li>
{{- end }}
</ul>
</div>