aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--common/base.j26
-rw-r--r--common/footer.j2.inc6
-rw-r--r--styles.css4
3 files changed, 9 insertions, 7 deletions
diff --git a/common/base.j2 b/common/base.j2
index d515ea1d..72fc1ab4 100644
--- a/common/base.j2
+++ b/common/base.j2
@@ -9,10 +9,6 @@
9 <body id="mybody"> 9 <body id="mybody">
10 {% include "common/navigation.j2.inc" %} 10 {% include "common/navigation.j2.inc" %}
11 {% block body_content %}{% endblock %} 11 {% block body_content %}{% endblock %}
12 <div class="container-fluid"> 12 {% include "common/footer.j2.inc" %}
13 <div class="container">
14 {% include "common/footer.j2.inc" %}
15 </div>
16 </div>
17 </body> 13 </body>
18</html> 14</html>
diff --git a/common/footer.j2.inc b/common/footer.j2.inc
index f5395b34..04685c64 100644
--- a/common/footer.j2.inc
+++ b/common/footer.j2.inc
@@ -1,4 +1,6 @@
1<div class="footer"> 1<footer>
2 <div class="container">
2 <p>&copy; <a href="https://gnunet.org/ev">GNUnet e.V.</a> and Inria 2015, 2016, 2017</p> 3 <p>&copy; <a href="https://gnunet.org/ev">GNUnet e.V.</a> and Inria 2015, 2016, 2017</p>
3 <p>{{ _("This page was created using <a href='https://www.gnu.org/'>Free Software</a> only.") }}</p> 4 <p>{{ _("This page was created using <a href='https://www.gnu.org/'>Free Software</a> only.") }}</p>
4</div> 5 </div>
6</footer>
diff --git a/styles.css b/styles.css
index c384a0e8..f84336d0 100644
--- a/styles.css
+++ b/styles.css
@@ -38,3 +38,7 @@ html {
38 /* override ugly bootstrap defaults */ 38 /* override ugly bootstrap defaults */
39 color: black; 39 color: black;
40} 40}
41
42footer {
43 margin-top: 2em;
44}