blob: d21ac73b8a59b12fd3e94d65b83df51347578c0a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
<!DOCTYPE html>
<html lang="{{ lang }}">
<head>
<meta charset="UTF-8"/>
<title>{{ _("GNUnet") }}</title>
<meta name="description" content="{{ _('GNU\'s framework for secure p2p networking') }}" />
{% include "common/header.j2.inc" %}
{% block head_content %}{% endblock %}
</head>
<body id="mybody">
{% include "common/navigation.j2.inc" %}
<div id="body_content">
<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 %}
<main id="maincontent">
{% endblock %}
</article>
</div>
</div>
{% include "common/footer.j2.inc" %}
</body>
</html>
|