diff options
Diffstat (limited to 'layouts/_default/all_posts.html')
-rw-r--r-- | layouts/_default/all_posts.html | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/layouts/_default/all_posts.html b/layouts/_default/all_posts.html index 51c9d657..ea5de00f 100644 --- a/layouts/_default/all_posts.html +++ b/layouts/_default/all_posts.html @@ -5,13 +5,7 @@ </h2> <ul> {{ range where site.RegularPages "Type" "!=" "special"}} - <li> - <a href="{{ .Page.Permalink }}"> - <time>{{ .PublishDate.Format "2006-01-02" }}</time> - · - {{ .Page.Title }} - </a> - </li> + {{ partial "partials/article_list_item.html" . }} {{ end }} </ul> </article> |