create template for translation banner

This commit is contained in:
meaz 2021-12-28 11:10:48 +01:00
parent 24d8a22f0e
commit c42c1940b5
Signed by: meaz
GPG Key ID: CD7A47B2F1ED43B4
2 changed files with 52 additions and 0 deletions

View File

@ -4,10 +4,14 @@
{% macro pageLinkName(text) %}{{ text|lower|replace({' ':'_'}) }}{% endmacro %}
{% block content %}
{{ page.content|raw }}
<div id="content" style="background-color: {{ page.header.bgcolor }}">
{% include 'partials/banner.html.twig' %}
{% for module in page.collection() %}
{{ module.content|raw }}
{% endfor %}
</div>
{% endblock %}

View File

@ -0,0 +1,48 @@
{% if page.header.translation_banner.set == "true" %}
<div class="translation_banner narrow">
{% if page.header.translation_banner.language == "French" %}
<p>FRENCH This page was last updated on <b>{{ page.header.translation_banner.last_modified }}</b></br>
Disroot's website translation is a community driven procces. We try to keep it as updated as we can.</br>
If you want to help, check our <a href="https://git.disroot.org/Disroot/Website" target="_blank"> website's git repository</a></p>
</p>
{% elseif page.header.translation_banner.language == "Spanish" %}
<p>SPANISH This page was last updated on <b>{{ page.header.translation_banner.last_modified }}</b></br>
Disroot's website translation is a community driven procces. We try to keep it as updated as we can.</br>
If you want to help, check our <a href="https://git.disroot.org/Disroot/Website" target="_blank"> website's git repository</a></p>
</p>
{% elseif page.header.translation_banner.language == "Italian" %}
<p>ITALIAN This page was last updated on <b>{{ page.header.translation_banner.last_modified }}</b></br>
Disroot's website translation is a community driven procces. We try to keep it as updated as we can.</br>
If you want to help, check our <a href="https://git.disroot.org/Disroot/Website" target="_blank"> website's git repository</a></p>
</p>
{% elseif page.header.translation_banner.language == "German" %}
<p>GERMAN This page was last updated on <b>{{ page.header.translation_banner.last_modified }}</b></br>
Disroot's website translation is a community driven procces. We try to keep it as updated as we can.</br>
If you want to help, check our <a href="https://git.disroot.org/Disroot/Website" target="_blank"> website's git repository</a></p>
</p>
{% elseif page.header.translation_banner.language == "Russian" %}
<p>RUSSIAN This page was last updated on <b>{{ page.header.translation_banner.last_modified }}</b></br>
Disroot's website translation is a community driven procces. We try to keep it as updated as we can.</br>
If you want to help, check our <a href="https://git.disroot.org/Disroot/Website" target="_blank"> website's git repository</a></p>
</p>
{% elseif page.header.translation_banner.language == "Portuguese" %}
<p>PORTUGUESE This page was last updated on <b>{{ page.header.translation_banner.last_modified }}</b></br>
Disroot's website translation is a community driven procces. We try to keep it as updated as we can.</br>
If you want to help, check our <a href="https://git.disroot.org/Disroot/Website" target="_blank"> website's git repository</a></p>
</p>
{% else %}
<p>This page was last updated on <b>{{ page.header.translation_banner.last_modified }}</b></br>
Disroot's website translation is a community driven procces. We try to keep it as updated as we can.</br>
If you want to help, check our <a href="https://git.disroot.org/Disroot/Website" target="_blank"> website's git repository</a></p>
</p>
{% endif %}
</div>
{% endif %}