Files
leanote/public/blog/themes/nav_fixed/archive.html

45 lines
1.2 KiB
HTML
Raw Normal View History

2014-11-09 16:24:19 +08:00
{{template "header.html" .}}
<div id="postsContainer">
<div class="container">
2015-01-10 19:04:06 +08:00
<h2>Archives {{if $.curCateTitle}} - {{$.curCateTitle}}{{end}}</h2>
2014-11-09 16:24:19 +08:00
</div>
<div id="posts">
<div class="each-post">
<ul>
{{range $.archives}}
2015-01-10 19:04:06 +08:00
{{$year := .Year}}
2014-11-12 18:54:42 +08:00
{{range .MonthAchives}}
2015-01-10 19:04:06 +08:00
<span class="archive-month">{{$year}}-{{.Month}}</span>
<ul>
2014-11-12 18:54:42 +08:00
{{range .Posts}}
<li>
2015-01-10 19:04:06 +08:00
{{dateFormat .PublicTime "2006-01-02"}} <a href="{{$.postUrl}}/{{.UrlTitle}}">
{{if .Title}}
{{.Title}}
{{else}}
Untitled
{{end}}
</a>
2014-11-12 18:54:42 +08:00
</li>
{{end}}
2015-01-10 19:04:06 +08:00
</ul>
2014-11-12 18:54:42 +08:00
2015-01-10 19:04:06 +08:00
2014-11-09 16:24:19 +08:00
{{end}}
2015-01-10 19:04:06 +08:00
2014-11-09 16:24:19 +08:00
{{end}}
</ul>
</div>
</div>
</div>
{{template "footer.html" .}}
</body>
</html>