blob: d8f1b1ecc349bc977833f1ebab595212880a4e1a (
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
{% load staticfiles %}
{% load compress %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>{% block title %}{% endblock %} Gentoo Identity</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="" />
<meta name="author" content="" />
<link href="http://fonts.googleapis.com/css?family=Open+Sans:400,400italic,700,700italic,600" rel="stylesheet" />
{% block extra_head %}{% endblock %}
{% compress css %}
<link href="{% static "css/bootstrap.css" %}" rel="stylesheet" charset="utf-8"/>
<link href="{% static "css/bootstrap-responsive.css" %}" rel="stylesheet" charset="utf-8"/>
{% block extra_css %}{% endblock %}
{% endcompress %}
</head>
<body style="padding-top: 80px;">
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<a class="brand" href="/">
<img src="{%static "img/site-logo.png"%}" alt="Gentoo Logo" />
</a>
<div class="nav-collapse">
<ul class="nav">
<!---<li class="active"><a href="#">People</a></li> -->
<li><a href="#">People</a></li>
<li><a href="#">Groups</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Lists<b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="{% url 'active_developers' %}">Developer List</a></li>
<li><a href="{% url 'foundation_members' %}">Foundation Members</a></li>
<li><a href="{% url 'former_developers' %}">Former Developer List</a></li>
</ul>
</li>
</ul>
<ul class="nav pull-right">
<li class="divider-vertical"></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">gentoo.org Sites <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="http://www.gentoo.org/">gentoo.org</a></li>
<li><a href="http://wiki.gentoo.org/" title="Find and contribute documentation">Wiki</a></li>
<li><a href="https://bugs.gentoo.org/" title="Report issues and find common issues">Bugs</a></li>
<li><a href="http://forums.gentoo.org/" title="Discuss with the community">Forums</a></li>
<li><a href="http://packages.gentoo.org/" title="Find software for your Gentoo">Packages</a></li>
<li class="divider"></li>
<li><a href="http://archives.gentoo.org/" title="Read up on past discussions">Archives</a></li>
<li><a href="http://overlays.gentoo.org/" title="Collaborate on maintaining packages">Overlays</a></li>
<li><a href="http://planet.gentoo.org/" title="Find out what's going on in the developer community">Planet</a></li>
<li><a href="http://sources.gentoo.org/" title="Browse our source code">Sources</a></li>
</ul>
</li>
{% if user.is_authenticated %}
<li class="divider-vertical"></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">{{ user.username }}<b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="{% url 'index' %}" title="View Profile">View Profile</a></li>
<li><a href="{% url 'profile-settings' %}" title="Edit Profile">Edit Profile</a></li>
<li><a href="{% url 'contact-settings' %}" title="Contact Settings">Contact Settings</a></li>
<li><a href="{% url 'password-settings' %}" title="Change Password">Change Password</a></li>
<li><a href="{% url 'email-settings' %}" title="Email Settings">Email Settings</a></li>
<li><a href="{% url 'gentoo-dev-settings' %}" title="Gentoo Account Settings">Gentoo Account Settings</a></li>
<li><a href="#" title="Invite others">Invite</a></li>
<li><a href="{% url 'logout' %}" title="Logout">Logout</a></li>
</ul>
</li>
{% endif %}
</ul>
</div>
</div>
</div>
</div>
<div class="wrap">
<div class="container" id="main">
{% block content %}{% endblock %}
</div>
</div>
<footer id="footer">
<div class="container">
<div class="row">
<div class="span4">
<strong>Questions or comments?</strong><br />
Please feel free to <a href="mailto:identity@gentoo.org">contact us</a>
</div>
</div>
<div class="row">
<div class="span12">
<strong>© 2001-2013 Gentoo Foundation, Inc.</strong><br />
<small>
Gentoo is a trademark of the Gentoo Foundation, Inc.
The contents of this document, unless otherwise expressly stated, are licensed under the
<a href="http://creativecommons.org/licenses/by-sa/3.0/" rel="license">CC-BY-SA-3.0</a> license.
The <a href="http://www.gentoo.org/main/en/name-logo.xml">Gentoo Name and Logo Usage Guidelines</a> apply.
</small>
</div>
</div>
</div>
</div>
</footer>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
{% compress js %}
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<script src="{% static "js/bootstrap.js" %}" charset="utf-8"></script>
<script src="{% static "js/sorttable.js" %}" charset="utf-8"></script>
{% block extra_js %}{% endblock %}
{% endcompress %}
</body>
</html>
{# vim:se fileencoding=utf8 et ts=4 sts=4 sw=4 ft=htmldjango : #}
|