forked from project-flotta/project-flotta.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
features-section.html
37 lines (34 loc) · 1.08 KB
/
features-section.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{% if site.data.settings.features %}
<!-- features -->
<section class="section">
<div class="container">
<div class="row">
<div class="col-12 text-center">
<h2 class="section-title">{{ site.data.settings.features-title }}</h2>
</div>
{% for feature in site.data.settings.features %}
<div class="col-md-4 mb-4 mb-md-0">
<div class="card hover-shadow shadow">
<div class="card-body {% if feature.active %}active-bg-primary{% endif %} text-center px-4 py-5">
<i class="{{ feature.icon }} icon mb-5 d-inline-block"></i>
<h4 class="mb-4">{{ feature.name }}</h4>
<p>{{ feature.description }}</p>
</div>
</div>
</div>
{% endfor %}
</div>
</div>
</section>
<!-- /features -->
{% endif %}
<section class="section">
<div class="container">
<div class="row">
<div class="col-lg-10 mx-auto text-center">
<h3>Demo</h3>
<script id="asciicast-492335" src="https://asciinema.org/a/492335.js" async></script>
</div>
</div>
</div>
</section>