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

about.html « partials « layouts - github.com/themefisher/timer-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 588b273bb806455681cada48fc79523078d4cdf5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{{ if .Site.Params.about.enable }}
{{ "<!-- About Section Start -->" | safeHTML }}
<section id="about">
	<div class="container">
		<div class="row">
			<div class="col-sm-6">
				<div class="block wow fadeInLeft" data-wow-delay=".3s" data-wow-duration="500ms">
					{{ with .Site.Params.about.title }}<h2>{{ . }}</h2>{{ end }}
					{{ with .Site.Params.about.content }}<p>{{ . | safeHTML }}</p>{{ end }}
				</div>
			</div>
			<div class="col-sm-6">
				<div class="block wow fadeInRight" data-wow-delay=".3s" data-wow-duration="500ms">
					{{ with .Site.Params.about.image }}<img src="{{ . | absURL }}" alt="about-image">{{ end }}
				</div>
			</div>
		</div>
	</div>
</section>
{{ "<!-- About Section End -->" | safeHTML }}
{{ end }}