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

index.html « layouts - github.com/jaden/twentyfourteen.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a9fcf5e9a26e0bdac2913727305fd9fea2b604d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{{ partial "header.html" . }}

<div id="main-content" class="main-content">

	<div id="primary" class="content-area">
		<div id="content" class="site-content" role="main">

			{{ range first 10 (where site.RegularPages "Type" "in" site.Params.mainSections) }}
				{{ partial "content.html" . }}
			{{ end }}

		</div><!-- #content -->
	</div><!-- #primary -->
	{{ partial "sidebar.html" . }}
</div><!-- #main-content -->

{{ partial "footer.html" . }}