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

jumbotron.html « _shared « partials « layouts - github.com/lgaida/mediumish-gohugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6ae3da399a2cc6a9f4ca6b81f2a8c49826c41604 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!-- Categories Jumbotron
================================================== -->
<div class="jumbotron fortags">
	<div class="d-md-flex h-100">
		<div class="col-md-4 transpdark align-self-center text-center h-100">
			<div class="d-md-flex align-items-center justify-content-center h-100">
				<h2 class="d-md-block d-none align-self-center py-1 font-weight-light">Explore <span class="d-none d-md-inline">→</span></h2>
			</div>
		</div>
		<div class="col-md-8 p-5 align-self-center text-center">
			{{ range $name, $taxonomy := .Site.Taxonomies.tags }}
			<a href="{{ "/tags/" | relLangURL }}{{ $name | urlize }}">{{ $name }}</a>
			{{ end }}
		</div>
	</div>
</div>