diff --git a/src/ulo-storage-applications/src/main/resources/spark/template/freemarker/base.flt b/src/ulo-storage-applications/src/main/resources/spark/template/freemarker/base.flt
index 1a2180580d4cfda105e2ab3c23756ed32efbce3a..47d911d2fd5ba25adb66db6943fa859445719c2c 100644
--- a/src/ulo-storage-applications/src/main/resources/spark/template/freemarker/base.flt
+++ b/src/ulo-storage-applications/src/main/resources/spark/template/freemarker/base.flt
@@ -29,9 +29,25 @@
                 footer {
                     border-top: solid 1px;
                     color: grey;
+                    display: flex;
                     margin-top: 1em;
                     padding: 1em;
+                }
+
+                div.left_footer {
+                    float: left;
+                    text-align: left;
+                    width: 30%;
+                }
+
+                div.right_footer {
+                    float: right;
                     text-align: right;
+                    width: 70%;
+                }
+
+                img.logo {
+                    padding-right: 1em;
                 }
 
                 code {
@@ -72,21 +88,45 @@
                 <@page_main/>
             </main>
             <footer>
-                <#if global_hostname??>
-                    Application Host <code>${global_hostname}</code> |
-                </#if>
+                <div class="left_footer">
+                    <a href="https://kwarc.info">
+                        <img class="logo" src="https://mathhub.info/static/logos/kwarc_logo.png">
+                    </a>
+
+                    <a href="https://www.fau.de">
+                        <img class="logo" src="https://mathhub.info/static/logos/fau_logo.png">
+                    </a>
+                </div>
+
+                <div class="right_footer">
+                    <#if global_hostname??>
+                        Application Host <code>${global_hostname}</code> |
+                    </#if>
+
+                    <#if global_server_url??>
+                        GraphDB Server <code>${global_server_url}</code> |
+                    </#if>
+
+                    <#if global_repository??>
+                        GraphDB Repository <code>${global_repository}</code> |
+                    </#if>
+
+                    <a href="https://gl.kwarc.info/supervision/schaertl_andreas/-/tree/master/src/ulo-storage-applications">
+                        Source Code
+                    </a>
+
+                    |
 
-                <#if global_server_url??>
-                    GraphDB Server <code>${global_server_url}</code> |
-                </#if>
+                    <a href="https://privacy.kwarc.info/">
+                        Privacy Policy
+                    </a>
 
-                <#if global_repository??>
-                    GraphDB Repository <code>${global_repository}</code> |
-                </#if>
+                    |
 
-                <a href="https://gl.kwarc.info/supervision/schaertl_andreas/-/tree/master/src/ulo-storage-applications">
-                    Source Code
-                </a>
+                    <a href="https://mathhub.info/legal/imprint">
+                        Imprint
+                    </a>
+                </div>
             </footer>
         </body>
     </html>