Files
hugo-fresh/layouts/partials/section2.html

35 lines
1.1 KiB
HTML
Raw Permalink Normal View History

2018-08-04 14:18:24 +02:00
{{- $section2 := .Site.Params.section2 }}
{{- $title := index $section2 "title" }}
{{- $subtitle := index $section2 "subtitle" }}
{{- $features := index $section2 "features" }}
2018-08-04 12:47:06 +02:00
<section class="section is-medium">
2018-08-04 14:18:24 +02:00
<div class="container">
<div class="columns">
<div class="column is-centered-tablet-portrait">
<h1 class="title section-title">{{ $title }}</h1>
<h3 class="subtitle is-5 is-muted">{{ $subtitle }}</h3>
<div class="divider"></div>
</div>
<div class="column is-7 mt-60">
{{- range $features }}
<article class="media icon-box">
<figure class="media-left">
<p class="image">
<img src="{{ printf "/images/illustrations/icons/%s.svg" .icon | relURL }}">
</p>
</figure>
<div class="media-content mt-50">
<div class="content">
<p>
<span class="icon-box-title">{{ .title }}</span>
2018-08-04 12:47:06 +02:00
2019-08-29 12:48:01 +02:00
<span class="icon-box-text">{{ .text | markdownify }}</span>
2018-08-04 14:18:24 +02:00
</p>
2018-08-04 12:47:06 +02:00
</div>
2018-08-04 14:18:24 +02:00
</div>
</article>
{{- end }}
</div>
2018-08-04 12:47:06 +02:00
</div>
2018-08-04 14:18:24 +02:00
</div>
2018-08-04 12:47:06 +02:00
</section>