www.federated.computer/themes/apsho/layouts/partials/feature.html

94 lines
3.1 KiB
HTML
Raw Normal View History

2023-06-02 16:17:07 +00:00
{{ with .Site.Data.feature }}
{{ if .enable }}
<section class="feature" id="feature">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-6">
<div class="feature-image">
<img
src="images/feature/feature-shape-01.svg"
class="feature-image-shape1"
style="left: -25%; top: 10%;"
alt="feature-image-shape"
/>
<img
src={{ .image1 }}
alt="feature-image"
/>
<img
src="images/feature/feature-shape-02.svg"
style="right: -13%; top: 45%;"
class="feature-image-shape2"
alt="feature-image-shape"
/>
</div>
</div>
<div class="col-lg-6">
<div class="feature-content ml-25">
<h2>
{{ .title }}
</h2>
<p>
{{ .description }}
</p>
<p>
{{ .description2 }}
</p>
2023-11-09 16:29:07 +00:00
<a href="https://nextcloud.federated.computer/apps/calendar/appointment/YnSgQfsCNZ8J" data-text={{ .buttonText }} class="btn btn-primary">
2023-06-02 16:17:07 +00:00
<span>{{ .buttonText }}</span>
</a>
</div>
</div>
</div>
<div class="row align-items-center">
<div class="col-lg-6 order-2 order-lg-1">
<div class="feature-content mr-25">
<h2>
{{ .Title2nd }}
</h2>
<p>
{{ .description2nd }}
</p>
<div class="feature-content-list">
<ul>
{{ $Section := .checkItem }}
{{ range $Section }}
<li>
<i class="ti-check"></i>
<p> {{ .text }} </p>
</li>
{{ end }}
</ul>
</div>
<div style="margin-top: 20px;">
<a href="https://nextcloud.federated.computer/apps/calendar/appointment/YnSgQfsCNZ8J" data-text={{ .buttonText }} class="btn btn-primary">
<span>{{ .buttonText }}</span>
</a>
</div>
2023-06-02 16:17:07 +00:00
</div>
</div>
<div class="col-lg-6 order-1 order-lg-2">
<div class="feature-image">
<img
src="images/feature/feature-shape-03.svg"
class="feature-image-shape3"
style="right: -25%; top: 10%;"
alt="feature-image-shape"
/>
<img
src={{ .image2 }}
alt="feature-image"
/>
<img
src="images/feature/feature-shape-04.svg"
style="left: -20%; top: 42%;"
class="feature-image-shape4"
alt="feature-image-shape"
/>
</div>
</div>
</div>
</div>
</section>
{{ end }}
{{ end }}