Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
No results found
Show changes
Commits on Source (9)
......@@ -50,8 +50,14 @@ ul.dropdown-menu > li.active > a {
color: #f8f8f8;
}
.licence {
text-align: right;
font-style: italic;
font-size: 75%;
}
footer#main-footer {
background: var(--teckids-secondary-light);
background: var(--teckids-secondary-dark);
color: #ffffff;
margin-top: 20px;
padding-top: 30px;
......
......@@ -84,13 +84,8 @@
</div>
</div>
</section>
{% endblock content %}
{% block sponsorstext %}
{{ SPONSORSTEXTS[article.lang] }}
{% endblock %}
{% block languagefooter %}
{% import 'translations.html' as translations with context %}
{{ translations.translations_for(article) }}
......
......@@ -85,6 +85,13 @@
<main role="main">
<!-- Main Content -->
{% block content %}{% endblock %}
<p class="licence">
{% if article is defined %}
{{ LICENCETEXTS[article.lang|default(DEFAULT_LANG)] }} {{ article.metadata.licence|default(LICENCE_DEFAULT) }}
{% elif page is defined %}
{{ LICENCETEXTS[DEFAULT_LANG] }} {{ page.metadata.licence|default(LICENCE_DEFAULT) }}
{% endif %}
</p>
</main>
<!-- Sponsoren-Footer -->
......@@ -95,7 +102,13 @@
<div class="row">
<div class="col s12">
<h3 id='sponsorheading' class="black-text">Sponsoren</h3>
<p id="sponsortext" class="black-text">{% block sponsorstext %}{{ SPONSORSTEXTS["de"] }}{% endblock %}</p>
<p id="sponsortext" class="black-text">
{% if article is defined %}
{{ SPONSORSTEXTS[article.lang|default(DEFAULT_LANG)] }}
{% elif page is defined %}
{{ SPONSORSTEXTS[DEFAULT_LANG] }}
{% endif %}
</p>
{% for image, url in SPONSOR_LOGOS %}
<a href="{{ url }}"><img src="{{ image }}" href="{{ url }}" alt="{{ url }}" class="sponsorslogo" /></a>
{% endfor %}
......