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

single.html « _default « layouts - gitlab.com/toryanderson/hugo-icarus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 91ae34f4d7fa2ffbc16feaf752dd63a8838359d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{{ partial "head" . }}

<div id="container">
	{{ partial "header" . }}
   	
   	<div class="outer">
   		{{ if .IsPage | and (not .Params.disable_profile) }}
	    {{ partial "profile" . }}
	    {{ end }}

	    {{ partial "single_article" . }}

	    {{ if .IsPage | and (not .Params.disable_widgets) }}
	    {{ partial "sidebar" . }}
	    {{ end }}
	</div>
</div>

{{ partial "footer" . }}
</body>
</html>