Last active
September 23, 2015 14:45
-
-
Save riywo/d77903a393e2f8df1580 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<main class="content" role="main"> | |
<article class="post post-section {{ .Section }}"> | |
{{ range .Data.Pages.GroupByDate "Jan 2006" }} | |
<h3>{{ .Key }}</h3> | |
<ul> | |
{{ range .Pages }} | |
<li> | |
<a href="{{ .Permalink }}">{{ .Title }}</a> | |
</li> | |
{{ end }} | |
</ul> | |
{{ end }} | |
</article> | |
</main> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment