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: 5380e604bede784d4b44cbcc9bb617a02876b9ba (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
	{{ $baseurl := .Site.BaseURL }}
	{{ template "partials/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>
	    <hr>
	    <div class="post content">
	        {{ .Content }}
	    </div>
	    <!-- END CONTENT -->
	{{ template "partials/about.html" . }}
		<nav id="pagination">
			{{if .NextPage}}<a class="prev" href="{{.NextPage.Permalink}}">Prev</a>{{end}}
			{{if .PrevPage}}<a class="next" href="{{.PrevPage.Permalink}}">Next</a>{{end}}
		</nav>
	{{ template "partials/footer.html" . }}