neue Texte in separaten Abschnitt verschoben
This commit is contained in:
@@ -13,24 +13,6 @@
|
||||
{{ with .Site.Params.about.description }}
|
||||
<p>{{ . | safeHTML }}</p>
|
||||
{{ end }}
|
||||
{{ with .Site.Params.about.barriersHeading }}
|
||||
<h3>{{ . }}</h3>
|
||||
{{ end }}
|
||||
{{ with .Site.Params.about.barriers }}
|
||||
<p>{{ . | safeHTML }}</p>
|
||||
{{ end }}
|
||||
{{ with .Site.Params.about.supportHeading }}
|
||||
<h3>{{ . }}</h3>
|
||||
{{ end }}
|
||||
{{ with .Site.Params.about.support }}
|
||||
<p>{{ . | safeHTML }}</p>
|
||||
{{ end }}
|
||||
{{ with .Site.Params.about.participationHeading }}
|
||||
<h3>{{ . }}</h3>
|
||||
{{ end }}
|
||||
{{ with .Site.Params.about.participation }}
|
||||
<p>{{ . | safeHTML }}</p>
|
||||
{{ end }}
|
||||
{{ with .Site.Params.about.corona }}
|
||||
<br><p><b>{{ . | safeHTML }}</b></p>
|
||||
{{ end }}
|
||||
|
||||
@@ -0,0 +1,19 @@
|
||||
{{ if .Site.Params.details.enable }}
|
||||
{{"<!-- Details Section -->" | safeHTML}}
|
||||
<section id="{{ i18n "details" | urlize }}" class="section details bg-gray">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
{{ range .Site.Params.details.section }}
|
||||
<div class="col-md-6 col-sm-12 mb-3 wow fadeInLeft" data-wow-delay="0.3s">
|
||||
<div class="content">
|
||||
<div class="sub-heading mb-1">
|
||||
<h3>{{ .heading }}</h3>
|
||||
</div>
|
||||
<p>{{ .description | safeHTML }}</p>
|
||||
</div>
|
||||
</div>
|
||||
{{ end }}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
{{ end }}
|
||||
Reference in New Issue
Block a user