feat: Remove article date on homepage

This commit is contained in:
Simon 2022-01-19 10:21:14 +01:00
parent 36513bd974
commit 881de4ea8b
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
{{ .Content }}
<ul>
{{ range .Pages }}
<li>{{ partial "article-link" . }}</li>
<li>{{ .Date | time.Format ":date_medium" }} - {{ partial "article-link" . }}</li>
{{ end }}
</ul>
{{ end }}

View File

@ -1 +1 @@
<a href="{{ .RelPermalink }}">{{ .Date.Format "2006-01-02" }} - {{ .Title }}</a>
<a href="{{ .RelPermalink }}">{{ .Title }}</a>