2020-06-25 22:26:36 +00:00
|
|
|
{%- for service in services %}
|
|
|
|
<div class="col-12 col-md-6 col-lg-4 p-3">
|
|
|
|
<div class="service">
|
2020-07-03 17:38:24 +00:00
|
|
|
<a class="link" {% if service.beta != true %} href="/{{locale}}/services/{{service.id}}" {% endif %}></a>
|
|
|
|
{% if service.beta == true %}
|
|
|
|
<div class="beta">TEST-PHASE</div>
|
|
|
|
{% endif %}
|
2020-06-25 22:26:36 +00:00
|
|
|
<div class="inner">
|
|
|
|
<i class="{{service.icon}} fa-4x"></i>
|
|
|
|
<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>{{service.summary[locale]}}</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{%- endfor %}
|