2016-09-01 22:08:39 +02:00
|
|
|
{{ define "title" }}{{ .Title }} | {{ .Site.Title }}{{ end }}
|
2016-09-01 16:37:27 +02:00
|
|
|
{{ define "main" }}
|
2016-08-30 11:45:13 +02:00
|
|
|
<article class="blog-post">
|
2016-09-02 09:09:17 +02:00
|
|
|
<header>
|
2016-09-14 11:28:15 +02:00
|
|
|
<h2 class="blog-post-title"><a href="{{ .Permalink }}" title="{{ .Title }}">{{ .Title }}</a></h2>
|
2016-09-26 07:32:46 +02:00
|
|
|
<p class="blog-post-meta"><time datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}">{{ .Date.Format .Site.Params.date_format }}</time> by <a href="#">{{ .Params.author | default .Site.Params.author }}</a>{{ if or (.Params.categories) (.Params.tags) }} in {{ partial "meta-terms.html" . }}{{ end }}</p>
|
2016-09-02 09:09:17 +02:00
|
|
|
</header>
|
2016-08-30 11:45:13 +02:00
|
|
|
{{ .Content }}
|
2016-09-18 16:11:08 +02:00
|
|
|
|
|
|
|
{{ if not .Site.Params.sharingicons.hide }}
|
|
|
|
{{ partial "sharing-icons.html" . }}
|
|
|
|
{{ end }}
|
2016-08-30 11:45:13 +02:00
|
|
|
</article> <!-- /.blog-post -->
|
2016-09-01 16:37:27 +02:00
|
|
|
{{ end }}
|