Welcome to mirror list, hosted at ThFree Co, Russian Federation.

single.html « post « layouts - github.com/yoshiharuyamashita/blackburn.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5dc8ca4b8e9ba460b476b2ac3e8db5b8cb76eb79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{{ partial "header.html" . }}

<div class="header">
  <h1>{{ .Title }}</h1>
  <h2>{{ .Description }}</h2>
</div>
<div class="content">

  {{ partial "post_meta.html" . }}

  {{ .Content }}
  
  {{ partial "share.html" . }}

  {{ partial "prev_next_post.html" . }}
  
  {{ partial "commento.html" . }}
  
  {{ partial "disqus.html" . }}

</div>

{{ partial "footer.html" . }}