2016-09-01 23:08:39 +03:00
|
|
|
{{ define "title" }}{{ .Title }} | {{ .Site.Title }}{{ end }}
|
2016-09-01 17:37:27 +03:00
|
|
|
{{ define "main" }}
|
2016-08-30 12:45:13 +03:00
|
|
|
<article class="blog-post">
|
2016-09-02 10:09:17 +03:00
|
|
|
<header>
|
2016-09-14 12:28:15 +03:00
|
|
|
<h2 class="blog-post-title"><a href="{{ .Permalink }}" title="{{ .Title }}">{{ .Title }}</a></h2>
|
2016-09-26 08:32:46 +03: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 10:09:17 +03:00
|
|
|
</header>
|
2016-08-30 12:45:13 +03:00
|
|
|
{{ .Content }}
|
2016-09-18 17:11:08 +03:00
|
|
|
|
|
|
|
{{ if not .Site.Params.sharingicons.hide }}
|
|
|
|
{{ partial "sharing-icons.html" . }}
|
|
|
|
{{ end }}
|
2016-08-30 12:45:13 +03:00
|
|
|
</article> <!-- /.blog-post -->
|
2016-09-01 17:37:27 +03:00
|
|
|
{{ end }}
|