grav-theme-libretic/templates/modular/bottom.html.twig

21 lines
667 B
Twig
Raw Permalink Normal View History

2015-01-26 11:57:05 +01:00
<div class="modular-row bottom {{ page.header.class }}">
2020-12-13 01:32:27 +01:00
{{ content|raw }}
2015-01-16 12:59:43 +01:00
{% for button in page.header.buttons %}
2015-01-27 21:47:09 +01:00
<a class="button{% if button.primary %} primary{% endif %}" href="{{ button.url }}">{{ button.text }}</a>
2015-01-16 12:59:43 +01:00
{% endfor %}
2015-01-26 11:57:05 +01:00
{% if page.header.class == 'borderbottom' %}
<hr>
{% endif %}
2015-01-27 21:47:09 +01:00
{% if page.header.services %}
<div class="services">
{% for service in page.header.services %}
<div class="service">
<i class="fa fa-{{ service.icon }}"></i>
<h4>{{ service.title }}</h4>
<p>{{ service.desc }}</p>
2020-12-13 01:32:27 +01:00
</div>
2015-01-27 21:47:09 +01:00
{% endfor %}
2020-12-13 01:32:27 +01:00
</div>
2015-01-27 21:47:09 +01:00
{% endif %}
2015-01-16 12:59:43 +01:00
</div>