2018-01-08 17:28:39 +01:00
|
|
|
{{ partial "header.html" . }}
|
|
|
|
<article class="post post-view">
|
|
|
|
<header class="post-header">
|
|
|
|
<h1 class="post-title">{{ .Title }}</h1>
|
|
|
|
<p class="post-meta">
|
|
|
|
{{- if or .Params.author .Site.Params.author -}}
|
|
|
|
{{ .Params.author | default .Site.Params.author }} · {{ end }}
|
2018-04-20 09:43:51 +02:00
|
|
|
{{- .Date.Format "Jan 2, 2006" -}} ·
|
|
|
|
{{ with .Params.categories }}
|
|
|
|
{{ $categoriesLen := len . }}
|
|
|
|
{{ if gt $categoriesLen 0 }}
|
|
|
|
<span>{{ i18n "post.categorized_in" }}</span>
|
|
|
|
{{ range $k, $v := . }}
|
|
|
|
<a class="category-link" href="{{ . | printf "%s%s" "/categories/" | urlize | lower | relLangURL }}">{{ . }}</a>{{ if lt $k (sub $categoriesLen 1) }}, {{ end }}
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
2018-01-08 17:28:39 +01:00
|
|
|
</p>
|
|
|
|
</header>
|
|
|
|
<div class="post-content">{{ .Content }}</div>
|
|
|
|
<footer class="post-footer">
|
|
|
|
{{ if .Params.tags }}
|
|
|
|
<ul class="post-tags">
|
|
|
|
{{ range .Params.tags }}
|
2018-03-13 07:31:10 +01:00
|
|
|
<li><a href="{{ `/tags/` }}{{ . | urlize }}/">{{ . }}</a></li>
|
2018-01-08 17:28:39 +01:00
|
|
|
{{ end }}
|
|
|
|
</ul>
|
|
|
|
{{ end }}
|
|
|
|
</footer>
|
|
|
|
<!-- Comments system area -->
|
|
|
|
</article>
|
2018-03-13 04:58:42 +01:00
|
|
|
{{ partial "footer.html" . }}
|