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

21 lines
669 B
Twig
Raw Normal View History

2015-01-26 11:57:05 +01:00
<div class="modular-row bottom {{ page.header.class }}">
2015-01-16 12:59:43 +01:00
{{ content }}
{% 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>
</div>
{% endfor %}
</div>
{% endif %}
2015-01-16 12:59:43 +01:00
</div>