fixed page listing for articles. Now single pages show up even if they're branches...
[theme-danix.xyz.git] / layouts / articles / list.html
CommitLineData
e28a215c 1{{ define "main" }}
d862564b 2<article class="single-page">
3 <div id="page-content">
e28a215c 4 {{ .Content }}
5 </div>
6</article>
7<ul>
8 <!-- Ranges through content/posts/*.md -->
9 {{ range .Pages }}
10 <li>
d862564b 11 <div>
12 <h3 class="article-title"><a href="{{.Permalink}}">{{.Title}}</a></h3>
13 <p class="byline">by {{ .Params.Author }} on {{.Date.Format "01-02-2006"}}</p>
14 </div>
e28a215c 15 </li>
16 {{ end }}
17</ul>
18{{ end }}