2016-02-02 22:20:24 +00:00
|
|
|
<nav class="col-md-3">
|
|
|
|
<div id="last-posts" class="open">
|
2016-02-06 14:37:20 +00:00
|
|
|
<h3 data-open="last-posts">{{ .Site.Title }} - {{ ( index $.Site.Data.translations $.Site.Params.locale ).mostrecentposts }}</h3>
|
2016-02-02 22:20:24 +00:00
|
|
|
<ul>
|
2016-02-04 21:29:46 +00:00
|
|
|
{{ range last 10 .Site.Pages }}
|
|
|
|
<li><a href="{{ .Permalink }}">{{ .Title }}</a></li>
|
|
|
|
{{ end }}
|
2016-02-02 22:20:24 +00:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="tags" class="open">
|
2016-02-06 14:37:20 +00:00
|
|
|
<h3 data-open="tags">{{ ( index $.Site.Data.translations $.Site.Params.locale ).tags }}</h3>
|
2016-02-02 22:20:24 +00:00
|
|
|
<ul class="tags">
|
2016-02-04 21:29:46 +00:00
|
|
|
{{ range $name, $taxonomy := .Site.Taxonomies.tags }}
|
|
|
|
<li><a href="/tags/{{ $name | urlize }}">{{ $name }}</a></li>
|
|
|
|
{{ end }}
|
2016-02-02 22:20:24 +00:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="categories" class="open">
|
2016-02-06 14:37:20 +00:00
|
|
|
<h3 data-open="categories">{{ ( index $.Site.Data.translations $.Site.Params.locale ).categories }}</h3>
|
2016-02-02 22:20:24 +00:00
|
|
|
<ul class="categories">
|
2016-02-04 21:29:46 +00:00
|
|
|
{{ range $name, $taxonomy := .Site.Taxonomies.categories }}
|
|
|
|
<li><a href="/categories/{{ $name | urlize }}">{{ $name }}</a></li>
|
|
|
|
{{ end }}
|
2016-02-02 22:20:24 +00:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</nav>
|