]> WPIA git - motion.git/blobdiff - templates/base.html
add: add footer with copyright and legal requirements
[motion.git] / templates / base.html
index 2dc692770aaac4f7df173e6e0051144dead95b6b..9d66ff4a749a06a5546c8844f5813e62603fab41 100644 (file)
@@ -2,13 +2,18 @@
 <html>
 <head>
 <title>{% block title %}Motion list{% endblock %}</title>
-<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
+<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
 <style type="text/css">
+.form-inline .motion {
+  width: 100%;
+}
 .motion {
   border: 1px solid black;
+  margin-top:5px;
+  margin-bottom:5px;
 }
 .motion .motion-title input.motion-title-input {
-  width: 80%;
+  width: 66%;
 }
 .motion .motion-title .float {
   float: right;
 }
 .motion textarea {
   display: block;
+  min-width: 100%;
 }
 .motion .motion-title{
   border-bottom: 1px solid black;
+  padding: 10px;
 }
 .motion .motion-title .title-text{
   font-size: 15pt;
 .motion p {
   padding: 10px;
 }
+form {
+  margin-top:5px;
+  margin-bottom:5px;
+}
 </style>
 </head>
 <body>
 {%- block body %}
 {% endblock %}
+<!-- Footer -->
+  <footer class="page-footer">
+    <div class="footer-copyright text-center py-3">
+      <p>© {{footer.version_year}} Copyright: <a href="{{footer.copyright_link}}">{{footer.copyright_name}}</a> 
+      | <a href="{{footer.imprint_link}}">Imprint</a> 
+      | <a href="{{footer.dataprotection_link}}">Data protection</a></p>
+    </div>
+  </footer>
 </body>
 </html>