summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorng0 <ng0@taler.net>2019-12-09 20:07:50 +0000
committerng0 <ng0@taler.net>2019-12-09 20:07:50 +0000
commit7c708d3aac4409bb56ac25510624b72a5d325f45 (patch)
tree3db130bfe3515e94d10593376622b3308097906a /common
parent7de18b3b5d42c3e8f3a75522521f6089023f5110 (diff)
downloadwww-7c708d3aac4409bb56ac25510624b72a5d325f45.tar.gz
www-7c708d3aac4409bb56ac25510624b72a5d325f45.tar.bz2
www-7c708d3aac4409bb56ac25510624b72a5d325f45.zip
add news template.
Diffstat (limited to 'common')
-rw-r--r--common/news.j229
1 files changed, 29 insertions, 0 deletions
diff --git a/common/news.j2 b/common/news.j2
new file mode 100644
index 00000000..15cfb173
--- /dev/null
+++ b/common/news.j2
@@ -0,0 +1,29 @@
+<!DOCTYPE html>
+<html lang="{{ lang }}">
+ <head>
+ <meta charset="UTF-8"/>
+ <title>{{ _("GNUnet") }}</title>
+ <meta name="description" content="{{ _('Taxable Anonymous Libre Electronic Reserves') }}" />
+ {% include "common/header.j2.inc" %}
+ {% block head_content %}{% endblock %}
+ </head>
+ <body id="mybody">
+ {% include "common/navigation.j2.inc" %}
+ <div id="body_content" class="bg-near-white">
+ <a href="#" id="jump-top" role="button">
+ <i class="fas fa-chevron-up"></i>
+ </a>
+ <div class="container-fluid">
+ <div class="container text-center">
+ <h1>News</h1>
+ </div>
+ </div>
+ <div class="container">
+ <article id="newspost-content">
+ {% block body_content %}{% endblock %}
+ </article>
+ </div>
+ </div>
+ {% include "common/footer.j2.inc" %}
+ </body>
+</html>