2020-06-25 22:26:36 +00:00
|
|
|
{%- for service in services %}
|
2023-12-13 01:55:14 +00:00
|
|
|
<div class="col-12 col-md-6 col-lg-4 p-3">
|
2020-12-05 01:25:37 +00:00
|
|
|
<div class="card service flat">
|
2020-10-02 16:38:32 +00:00
|
|
|
<a class="link" href="/{{locale}}/services{% if service.beta != true %}/{{service.id}}{% endif %}"></a>
|
|
|
|
<div class="inner" href="/{{locale}}/services{% if service.beta != true %}/{{service.id}}{% endif %}">
|
2020-07-03 17:38:24 +00:00
|
|
|
{% if service.beta == true %}
|
|
|
|
<div class="beta">TEST-PHASE</div>
|
|
|
|
{% endif %}
|
2021-06-14 15:41:33 +00:00
|
|
|
<i class="{{service.icon}} i-2x i-fw"></i>
|
2020-10-02 16:38:32 +00:00
|
|
|
<h2 class="mt-2">{{service.name}}{% if service.url %} <a href="{{service.url}}" target="_blank"><i
|
2021-06-14 10:10:57 +00:00
|
|
|
class="i-external-link"></i></a>{% endif %}</h2>
|
2020-10-02 16:38:32 +00:00
|
|
|
</div>
|
2020-06-25 22:26:36 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{%- endfor %}
|