feat: Remove article date on homepage
This commit is contained in:
parent
36513bd974
commit
881de4ea8b
|
@ -2,7 +2,7 @@
|
||||||
{{ .Content }}
|
{{ .Content }}
|
||||||
<ul>
|
<ul>
|
||||||
{{ range .Pages }}
|
{{ range .Pages }}
|
||||||
<li>{{ partial "article-link" . }}</li>
|
<li>{{ .Date | time.Format ":date_medium" }} - {{ partial "article-link" . }}</li>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</ul>
|
</ul>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
<a href="{{ .RelPermalink }}">{{ .Date.Format "2006-01-02" }} - {{ .Title }}</a>
|
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
|
||||||
|
|
Loading…
Reference in New Issue