summaryrefslogtreecommitdiffstats
path: root/_build/themes/ninenines/layouts/articles/single.html
blob: c9589e104551723f9d573bb7b7b8872c0961adf6 (plain) (blame)
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{{ partial "header.html" . }}
</header>

<div id="contents">
<div class="container">
<div class="row">
<div class="span9 maincol">

<article class="blog_item">
<header>
	<h1 class="lined-header"><span>{{ .Title }}</span></h1>
	<p class="date">
		<span class="year">{{ .Date.Format "2006" }}</span>
		<span class="day-month">{{ .Date.Format "02 Jan" }}</span>
	</p>
</header>

{{ .Content }}
</article>
</div>

<div class="span3 sidecol">
<h3>More articles</h3>
<ul id="articles-nav" class="extra_margin">
	{{ range (where $.Site.Pages "Type" "articles") }}
		{{ if ne .RelPermalink "/articles/" }}
			<li><a href="{{ .Permalink }}">{{ .Title }}</a></li>
		{{ end }}
	{{ end }}
</ul>

<h3>Feedback</h3>
<p>Feel free to <a href="mailto:[email protected]">email us</a>
if you found any mistake or need clarification on any of the
articles.</p>

</div>
</div>
</div>
</div>

{{ partial "footer.html" . }}