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: fc84e4618561af08fc477f882c147ca7bf7f427d (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 "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>
	    <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" . }}