2020-06-25 22:26:36 +00:00
|
|
|
{%- for service in services %}
|
|
|
|
<div class="col-12 col-md-6 p-3">
|
|
|
|
<div class="service flat">
|
2020-07-03 17:38:24 +00:00
|
|
|
<a class="link inner" href="/{{locale}}/services{% if service.beta != true %}/{{service.id}}{% endif %}">
|
|
|
|
{% if service.beta == true %}
|
|
|
|
<div class="beta">TEST-PHASE</div>
|
|
|
|
{% endif %}
|
2020-06-25 22:26:36 +00:00
|
|
|
<i class="{{service.icon}} fa-fw fa-2x"></i>
|
|
|
|
<h2 class="mt-2">{{service.name}}</h2>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{%- endfor %}
|