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

list.html « blog « layouts - github.com/GDGToulouse/devfest-theme-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8ac9d45683653de0010aab847c73c7647ef2e071 (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" }}

{{ $lang := $.Page.Language.Lang }}

<div class="hero">
	<h1>{{ $.Page.Params.Title }}</h1>
	<div class="description">
		{{ .Content }}
	</div>
</div>

<section class="blogs">
	{{ range .Pages }}
	<article>
		<a class="visually-hidden" aria-hidden="true" href="{{ .Permalink }}">{{ .Title }}</a>
		<a class="blog" href="{{ .Permalink }}">
			<div class="img" style="background-image: url({{ .Params.image }});"></div>
			<div class="info">
				<div class="date">{{ partial "date-short.html" (dict "time" .Date "lang" $lang) }}</div>
				<h2>{{ .Title }}</h2>
				<span class="brief">{{ .Params.brief }}</span>
				<!-- <div class="reading">{{ .ReadingTime }}</div> -->
				<p>{{ .Summary }} ...</p>
			</div>
		</a>
	</article>
	{{ end }}
</section>


{{ end }}