blog/layouts/labs/single.html

33 lines
1.0 KiB
HTML
Raw Normal View History

{{ partial "labs-header-content.html" . }}
<!-- Main Section Layout
-->
<main id="single" role="main">
<div class="article-header">
<h1>{{ .Title }}</h1>
<div class="meta">
{{ .Date.Format "Jan 2, 2006" }} &nbsp;
{{ range .Params.categories }}
#<a href="/categories/{{ . | urlize }}">{{ . }}</a>&nbsp;
{{ end }}
{{ range .Params.tags }}
#<a href="/tags/{{ . | urlize }}">{{ . }}</a>&nbsp;
{{ end }}: {{ .Description }}
</div>
</div>
<article>
{{ .Content }}
</main>
<nav class="pagination">
{{ with .PrevInSection }}
<span class="previous">&larr; <a href="{{ .Permalink }}" rel="prev">{{ .Title }}</a></span>
{{ end }}
{{ with .NextInSection }}
<span class="next"><a href="{{ .Permalink }}" rel="next">{{ .Title }}</a> &rarr;</span>
{{ end }}
</nav>
{{ partial "footer.html" . }}