2020-06-25 22:26:36 +00:00
|
|
|
{%- for service in services %}
|
|
|
|
<div class="col-12 col-md-6 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-07 22:16:21 +00:00
|
|
|
{% if service.si %}
|
|
|
|
<i class="si si-{{service.si}} fa-2x"></i>
|
|
|
|
{% else %}
|
2020-06-25 22:26:36 +00:00
|
|
|
<i class="{{service.icon}} fa-fw fa-2x"></i>
|
2021-06-07 22:16:21 +00:00
|
|
|
{% endif %}
|
2020-10-02 16:38:32 +00:00
|
|
|
<h2 class="mt-2">{{service.name}}{% if service.url %} <a href="{{service.url}}" target="_blank"><i
|
|
|
|
class="fas fa-external-link-alt"></i></a>{% endif %}</h2>
|
|
|
|
</div>
|
2020-06-25 22:26:36 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{%- endfor %}
|