You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
605 B
HTML
31 lines
605 B
HTML
{{ partial "head.html" . }}
|
|
<body>
|
|
{{ partial "nav.html" . }}
|
|
{{ partial "profile.html" . }}
|
|
|
|
<section id="wrapper" class="home">
|
|
{{ range .Data.Pages.GroupByDate "2006" }}
|
|
<div class="archive">
|
|
<h3>{{ .Key }}</h3>
|
|
<ul>
|
|
{{ range .Pages }}
|
|
<div class="post-item">
|
|
<div class="post-time">{{ .Date.Format "Jan 2" }}</div>
|
|
<a href="{{ .Permalink }}" class="post-link">
|
|
{{ .Title }}
|
|
</a>
|
|
</div>
|
|
{{ end }}
|
|
</ul>
|
|
</div>
|
|
{{ end }}
|
|
{{ partial "footer.html" . }}
|
|
</section>
|
|
|
|
<div class="dd">
|
|
</div>
|
|
|
|
{{ partial "js.html" . }}
|
|
</body>
|
|
</html>
|