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

single.html « _default « layouts - github.com/AlexFinn/simple-a.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0f01e0ab07bfd4df3263a84930ac42ba78bd11c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{{ $baseurl := .Site.BaseUrl }}
{{ template "theme/chrome/header.html" . }}
<!-- CONTENT -->
<div class="post">
	<header class="post-header">
		<h1><a href="{{ .RelPermalink }}">{{ .Title }}</a></h1>
		<div class="post-time">{{ .Date.Format "January 2 2006" }}</div>
	</header>
	<div class="post-after">
		<div class="tags">
			{{ range .Params.tags }}
				<a href="{{ $baseurl }}/tags/{{ . | urlize }}">{{ . }}</a>              
			{{ end }}
		</div>
	</div>
</div>
<hr>
<div class="post content">
	{{ .Content }}
</div>
<!-- END CONTENT -->

{{ template "theme/chrome/about.html" . }}
	<nav id="pagination">
		{{if .Prev}}<a class="prev" href="{{.Prev.Permalink}}">Prev</a>{{end}}
		{{if .Next}}<a class="next" href="{{.Next.Permalink}}">Next</a>{{end}}
	</nav>
{{ template "theme/chrome/footer.html" . }}