diff --git a/static/artwork b/static/artwork
index 2cbfc7bfdee0a2ec768eb208c22c1c56d5db18d5..637f8960164c3b39f5909d2cd874264e7feb9ab2 160000
--- a/static/artwork
+++ b/static/artwork
@@ -1 +1 @@
-Subproject commit 2cbfc7bfdee0a2ec768eb208c22c1c56d5db18d5
+Subproject commit 637f8960164c3b39f5909d2cd874264e7feb9ab2
diff --git a/templates/article.html b/templates/article.html
index 7789907324446abf6735ef48a06f2d5fc66b276f..1f28c22af2b7c090bcea2f2388955357ee6a1588 100644
--- a/templates/article.html
+++ b/templates/article.html
@@ -84,9 +84,6 @@
           </div>
       </div>
 </section>
-{% if article.metadata.licence %}
-    <p class="licence">{{ LICENCETEXTS[article.lang] }} {{ article.metadata.licence }}.</p>
-{% endif %}
 {% endblock content %}
 
 {% block sponsorstext %}
diff --git a/templates/base.html b/templates/base.html
index 04f38b5f0db46319628570aa10cd8c641564d4b1..76143d1453e9f5a0335cb55be015bf517cee58a9 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -85,6 +85,7 @@
     <main role="main">
     <!-- Main Content -->
 	{% block content %}{% endblock %}
+	<p class="licence">{{ LICENCETEXTS[article.lang or DEFAULT_LANG] }} {{ article.metadata.licence or LICENCE_DEFAULT }}.</p>
     </main>
 
     <!-- Sponsoren-Footer -->
diff --git a/templates/page.html b/templates/page.html
index c1ff7e22b92649023a8ea9e0a98bae0346417136..a5086ceb97580fd21791cb78fb74814486e97424 100644
--- a/templates/page.html
+++ b/templates/page.html
@@ -38,7 +38,4 @@
             {{ page.content }}
 	{% endif %}
     </section>
-    {% if page and page.metadata.licence %}
-        <p class="licence">{{ LICENCETEXTS["de"] }} {{ page.metadata.licence }}</p>
-    {% endif %}
 {% endblock content %}
diff --git a/templates/page_text.html b/templates/page_text.html
index 3f864634f559838b2681b1fa564330f350d745d0..66161a2a8c5689c9d660aeec1225188ec2f10db7 100644
--- a/templates/page_text.html
+++ b/templates/page_text.html
@@ -9,7 +9,4 @@
 	{% endif %}
     </div>
 </section>
-{% if page and page.metadata.licence %}
-    <p class="licence">{{ LICENCETEXTS["de"] }} {{ page.metadata.licence }}</p>
-{% endif %}
 {% endblock content %}