36 lines
1.2 KiB
HTML
36 lines
1.2 KiB
HTML
{{ define "main" }}
|
|
<div class="row">
|
|
<div class="col-md-8">
|
|
<article class="post" itemscope itemtype="http://schema.org/BlogPosting">
|
|
|
|
<header class="post-header">
|
|
<h1 class="post-title" itemprop="name headline">{{ .Title }}</h1>
|
|
<p class="post-meta"><time datetime='{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}' itemprop="datePublished">{{ .Date.Format (i18n "dateFormat") }}</time>{{ with .Params.Author }} • <span itemprop="author" itemscope itemtype="http://schema.org/Person"><span itemprop="name">{{ . }}</span></span>{{ end }}</p>
|
|
|
|
</header>
|
|
|
|
<div class="post-content" itemprop="articleBody">
|
|
{{ .Content }}
|
|
</div>
|
|
|
|
</article>
|
|
|
|
<div class="row">
|
|
<ul class="pager">
|
|
{{ with .NextPage }}
|
|
<li><a class="next" href="{{ .Permalink }}">« {{ .Title }}</a></li>
|
|
{{ end }}
|
|
{{ with .PrevPage }}
|
|
<li><a class="previous" href="{{ .Permalink }}">{{ .Title }} »</a></li>
|
|
{{ end }}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
{{ partial "sidebar.html" . }}
|
|
|
|
</div>
|
|
|
|
|
|
{{ end }}
|