summaryrefslogtreecommitdiff
path: root/templates/base.html
blob: f5e8609a397b0be6ec766e03e6ee64344cf16ca5 (plain)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
    <title>{% block title %}Parabola GNU/Linux-libre{% endblock %}</title>
    <meta http-equiv="content-type" content="text/html; charset=utf-8" />
    <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}archweb.css" media="screen, projection" />
    <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}archweb-print.css" media="print" />
    <link rel="icon" type="image/x-icon" href="{{ STATIC_URL }}favicon.ico" />
    <link rel="shortcut icon" type="image/x-icon" href="{{ STATIC_URL }}favicon.ico" />
    <link rel="search" type="application/opensearchdescription+xml" href="{% url opensearch-packages as osp %}{{ osp }}" title="Parabola Packages" />
    {% block head %}{% endblock %}
</head>
<body class="{% if user.is_authenticated %}devmode {% endif %}{% block bodyclass %}{% endblock %}">

    <div id="archnavbar" class="{% block navbarclass %}anb-home{% endblock %}">
        <div id="archnavbarlogo"><h1><a href="/" title="Return to the main page">Parabola</a></h1></div>
        <div id="archnavbarmenu">
            <ul id="archnavbarlist">
                <li id="anb-home"><a href="/" title="Parabola news, packages, projects and more">Home</a></li>
                <li id="anb-packages"><a href="/packages/" title="Package Database">Packages</a></li>
                <li id="anb-wiki"><a href="https://wiki.parabolagnulinux.org" title="Community documentation">Wiki</a></li>
                <li id="anb-bugs"><a href="https://labs.parabola.nu" title="Issue Tracker">Bugs</a></li>
                <li id="anb-projects"><a href="https://projects.parabolagnulinux.org" title="Our Code">Projects</a></li>
                <li id="anb-download"><a href="https://wiki.parabolagnulinux.org/Download" title="Get Parabola">Download</a></li>
            </ul>
        </div>
    </div><!-- #archnavbar -->

    <div id="content">
        <div id="archdev-navbar">
            {% if user.is_authenticated %}
                <ul>
                    <li><a href="/devel/" title="Developer Dashboard">Dashboard</a></li>
                    <li><a href="https://projects.parabolagnulinux.org/" title="Git Projects">Projects</a></li>
                    <li><a href="{% url news-list as newsl %}{{ newsl }}" title="Manage news articles">News</a></li>
                    <li><a href="/packages/signoffs/" title="Package signoffs">Signoffs</a></li>
                    <li><a href="/todo/" title="Developer todo lists">Todos</a></li>
                    <li><a href="/packages/differences/" title="Package architecture differences">Architecture Differences</a></li>
                    <li><a href="https://lists.parabolagnulinux.org/pipermail/dev/" title="dev mailing list archives">Archives</a></li>
                    <li><a href="/devel/clock/" title="Developer world clocks">Dev Clocks</a></li>
                    {% if user.is_staff %}
                    <li><a href="{% url admin:index %}" title="Django Admin Interface">Django Admin</a></li>
                    {% endif %}
                    <li><a href="/devel/profile/" title="Modify your account profile">Profile</a></li>
                    <li><a href="/logout/" title="Logout of the developer interface">Logout</a></li>
                </ul>
            {% endif %}
        </div><!-- #archdev-navbar -->

        {% if messages %}
            <div id="sys-message" class="box">
                {% for message in messages %}
                    <p>{{message}}</p>
                {% endfor %}
            </div>
        {% endif %}

        {% block content %}
            <div id="content-left-wrapper">
                <div id="content-left">
                    {% block content_left %}{% endblock %}
                </div><!-- #content_left -->
            </div>

            <div id="content-right">
                {% block content_right %}{% endblock %}
            </div><!-- #content_right -->
        {% endblock %}

        <div id="footer">
            <p>Copyleft 2009-{% now "Y" %} Parabola Project. All content is
            released under a <a
            href="http://creativecommons.org/licenses/by-sa/3.0/"
            rel="license">cc-by-sa 3.0 unported</a> license.</p>
        </div><!-- #footer -->

    </div><!-- #content -->

</body>
</html>