2020-06-25 22:26:36 +00:00
|
|
|
{%- for service in services %}
|
|
|
|
<div class="col-12 col-md-6 col-lg-4 p-3">
|
2020-12-05 01:25:37 +00:00
|
|
|
<div class="card service">
|
2020-11-28 00:55:09 +00:00
|
|
|
<a class="link" {% if service.beta !=true %} href="/{{locale}}/services/{{service.id}}" {% endif %}></a>
|
2020-07-03 17:38:24 +00:00
|
|
|
{% if service.beta == true %}
|
2020-11-28 00:55:09 +00:00
|
|
|
<div class="beta">TEST-PHASE</div>
|
2020-07-03 17:38:24 +00:00
|
|
|
{% endif %}
|
2020-06-25 22:26:36 +00:00
|
|
|
<div class="inner">
|
2021-06-14 15:41:33 +00:00
|
|
|
<i class="{{service.icon}} i-4x i-fw"></i>
|
2020-11-28 00:55:09 +00:00
|
|
|
<h2 class="mt-2 mb-1">{{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-11-28 00:55:09 +00:00
|
|
|
{% if service.status %}
|
|
|
|
<div class="mb-2">
|
|
|
|
<a href="https://status.sp-codes.de" target="_blank">
|
2023-12-06 23:59:38 +00:00
|
|
|
<img alt="{{strings.state[locale]}}" src="https://status.sp-codes.de/api/badge/{{service.status}}/status?label={{strings.state[locale]}}&upLabel={{strings.operational[locale]}}&downLabel={{strings.outage[locale]}}&maintenanceLabel={{strings.maintenance[locale]}}">
|
2020-11-28 00:55:09 +00:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
2020-06-25 22:26:36 +00:00
|
|
|
<div>{{service.summary[locale]}}</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{%- endfor %}
|