renamed blog to articles in various layouts
[theme-danix.xyz.git] / layouts / partials / home-latest-posts.html
1 <div id="latest-posts">
2 <h3>latest posts</h3>
3 {{ range where $.Site.RegularPages.ByLastmod.Reverse "Section" "articles" }}
4 <article class="post post-summary">
5 <header class="article-meta">
6 <h3><a class="title" href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
7 {{ partial "funcs/datepublish.html" . }}
8 </header>
9 </article>
10 {{ end }}
11 </div>