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

index.html « layouts - github.com/marcanuy/simpleit-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 18c40c112224789612fc2a251ab8a14e74ccb730 (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
27
28
29
30
31
{{ define "main" }}
{{ partial "index_header.html" . }}
<div class="container">
    <div class="row">
	<main aria-role="main" class="col mt-5">

	    
	    <div class="homepage-content mt-5">
		{{.Content}}
	    </div>


	    <div>
		{{ partial "sections-tree.html" . }}
	    </div>

	    {{ partial "all_taxonomies.html" . }}

	    <hr >
	    <div>
		<h3>{{ i18n "latest-articles" }}</h3>
		{{ partial "latest-articles.html" . }}
	    </div>

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

{{- partial "footer.html" . -}}

{{ end }}