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.
|
|
|
{{ define "main" }}
|
|
|
|
{{ partial "profile.html" . }}
|
|
|
|
|
|
|
|
<section id="archive">
|
|
|
|
|
|
|
|
{{ range .Data.Pages.GroupByDate "2006" }}
|
|
|
|
<div class="group">
|
|
|
|
<h3 class="key">
|
|
|
|
{{ .Key }}
|
|
|
|
</h3>
|
|
|
|
|
|
|
|
{{ range .Pages }}
|
|
|
|
<div class="value">
|
|
|
|
<div class="date">
|
|
|
|
{{ .Date.Format "Jan 2" }}
|
|
|
|
</div>
|
|
|
|
<div class="title">
|
|
|
|
<a href="{{ .Permalink }}">
|
|
|
|
{{ .Title }}
|
|
|
|
</a>
|
|
|
|
|
|
|
|
{{ with .Params.tags }}
|
|
|
|
<div class="tags">
|
|
|
|
{{ range . }}
|
|
|
|
<a href="{{ "tags/" | absURL }}{{ . | urlize }}">{{ . }}</a>
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
{{ end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
|
|
{{ end }}
|