forked from samuel-p/sp-codes.de
added beta flag for services
added jitsi service
This commit is contained in:
parent
ff1eed98c8
commit
6ebcd13e67
7 changed files with 47 additions and 7 deletions
|
@ -5,6 +5,6 @@ layout: base.njk
|
|||
|
||||
{{ content | safe }}
|
||||
|
||||
<div class="row">
|
||||
<div class="row justify-content-center">
|
||||
{% include 'services-extended.html' %}
|
||||
</div>
|
||||
|
|
|
@ -1,7 +1,10 @@
|
|||
{%- for service in services %}
|
||||
<div class="col-12 col-md-6 col-lg-4 p-3">
|
||||
<div class="service">
|
||||
<a class="link" href="/{{locale}}/services/{{service.id}}"></a>
|
||||
<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 %}
|
||||
<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
|
||||
|
|
|
@ -1,7 +1,10 @@
|
|||
{%- for service in services %}
|
||||
<div class="col-12 col-md-6 p-3">
|
||||
<div class="service flat">
|
||||
<a class="link inner" href="/{{locale}}/services/{{service.id}}">
|
||||
<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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue