Website for sp-codes.de
https://www.sp-codes.de
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
476 B
13 lines
476 B
{%- for service in services %}
|
|
<div class="col-12 col-md-6 p-3">
|
|
<div class="service flat">
|
|
<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 %}
|
|
<i class="{{service.icon}} fa-fw fa-2x"></i>
|
|
<h2 class="mt-2">{{service.name}}</h2>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
{%- endfor %}
|