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

index.html « layouts - github.com/yursan9/manis-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4207ed3f76e7938ae96362ac42be476d564372ca (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
{{ partial "header" . }}
<article>
	<header>
		{{ partial "title" . }}
		{{ with .Content }}{{.}}{{ end }}
	</header>
	{{ $latestcount := .Site.Params.LatestCount | default 3 }}
	<section>
		<h4>{{ T "latestPost" }}</h4>
		<ul class="no-bullet">
			{{ $pages := where site.RegularPages "Type" "in" site.Params.mainSections }}
			{{- range (first $latestcount $pages) -}}
			{{ partial "li" . }}
			{{- end -}}
		</ul>
	</section>

	{{ $pages := where site.RegularPages "Type" "in" .Site.Params.WorkSections }}
	{{ if ne (len $pages) 0 }}
	<section>
		<h4>{{ T "latestWork" }}</h4>
		<ul class="no-bullet">
			{{- range (first $latestcount $pages) -}}
			{{ partial "li" . }}
			{{- end -}}
		</ul>
	</section>
	{{ end }}
</article>
{{ partial "footer" . }}