blob: df75eec0bc1b3f72c2840e05ad20ceac28e90bb6 (
plain)
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
|
<div class="features">
{% for feature in site.features %}
{% if feature.title %}
<div class="feature">
<div>
<span class="fa-stack fa-1x">
<i class="iconBack fas fa-circle fa-stack-2x"></i>
<i class="iconTop fas fa-{{ feature.fontawesome_icon_name }} fa-stack-1x"></i>
</span>
</div>
<div class="featureText">
<h3>
{{ feature.title }}
</h3>
<p>
{{ feature.description }}
</p>
</div>
</div>
{% endif %}
{% endfor %}
</div>
|