news.j2 (898B)
1 <!DOCTYPE html> 2 <html lang="{{ lang }}"> 3 <head> 4 <meta charset="UTF-8"/> 5 <title>{{ _("GNU Taler") }}</title> 6 <meta name="description" content="{{ _('Taxable Anonymous Libre Electronic Reserves') }}" /> 7 {% include "common/header.j2.inc" %} 8 {% block head_content %}{% endblock %} 9 </head> 10 <body id="mybody"> 11 {% include "common/navigation.j2.inc" %} 12 <div id="body_content" class="bg-near-white"> 13 <a href="#" id="jump-top" role="button"> 14 <i class="fas fa-chevron-up"></i> 15 </a> 16 <div class="container-fluid"> 17 <div class="container text-center"> 18 <h1>News</h1> 19 </div> 20 </div> 21 <div class="container"> 22 <article id="newspost-content"> 23 {% block body_content %}{% endblock %} 24 </article> 25 </div> 26 </div> 27 {% include "common/footer.j2.inc" %} 28 </body> 29 </html>