2012-08-15 15:32:16 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
|
|
|
2012-05-06 20:27:14 +02:00
|
|
|
{% load url from future %}
|
2012-05-13 16:42:29 +02:00
|
|
|
{% load timedelta %}
|
2012-05-06 20:27:14 +02:00
|
|
|
|
2012-08-15 15:32:16 +02:00
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
2011-04-13 08:50:24 +02:00
|
|
|
<head>
|
|
|
|
<title>{% block title %}euscan{% endblock %}</title>
|
2012-08-15 15:32:16 +02:00
|
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
2011-08-25 15:39:54 +02:00
|
|
|
{% block meta %}
|
2012-05-06 20:27:14 +02:00
|
|
|
<link rel="alternate" type="application/atom+xml" title="Global log" href="{% url "global_feed" %}" />
|
2011-08-25 15:39:54 +02:00
|
|
|
{% endblock %}
|
2011-04-13 08:50:24 +02:00
|
|
|
{% block css %}
|
2012-06-29 14:13:25 +02:00
|
|
|
<link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/bootstrap.min.css" media="screen" title="Normal" />
|
2012-04-04 14:33:40 +02:00
|
|
|
<link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/style.css" media="screen" title="Normal" />
|
2011-04-13 08:50:24 +02:00
|
|
|
{% endblock %}
|
|
|
|
{% block javascript %}
|
|
|
|
{% endblock %}
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="header">
|
2011-07-21 15:00:59 +02:00
|
|
|
<a href="http://www.gentoo.org">
|
2012-08-15 15:32:16 +02:00
|
|
|
<img id="logo" src="{{ STATIC_URL }}img/gentoo_org.png" alt="gentoo" />
|
2011-07-21 15:00:59 +02:00
|
|
|
</a>
|
|
|
|
{% block header %}<h1>Ebuild Upstream Scanner (euscan)</h1>{% endblock %}
|
2011-04-13 08:50:24 +02:00
|
|
|
</div>
|
2012-06-29 14:13:25 +02:00
|
|
|
<div class="row-fluid">
|
|
|
|
<div class="span10">
|
|
|
|
<div class="row-fluid">
|
|
|
|
<div class="span1"></div>
|
|
|
|
<div id="content" class="rounded span11">
|
|
|
|
{% block content %}{% endblock %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="span2">
|
|
|
|
<div class="row-fluid">
|
|
|
|
<div id="menus" class="span11">
|
|
|
|
{% block menus %}
|
|
|
|
<div class="menu rounded">
|
|
|
|
<ul>
|
|
|
|
{% block menu %}
|
|
|
|
<li><a href="{% url "index" %}">Home</a></li>
|
|
|
|
<li><a href="{% url "categories" %}">Categories</a></li>
|
|
|
|
<li><a href="{% url "herds" %}">Herds</a></li>
|
|
|
|
<li><a href="{% url "maintainers" %}">Maintainers</a></li>
|
|
|
|
<li><a href="{% url "overlays" %}">Overlays</a></li>
|
|
|
|
<li><a href="{% url "world" %}">Scan World</a></li>
|
|
|
|
<li><a href="{% url "statistics" %}">Statistics</a></li>
|
2012-06-12 15:27:28 +02:00
|
|
|
|
2012-06-29 14:13:25 +02:00
|
|
|
<li>---</li>
|
2012-06-12 15:27:28 +02:00
|
|
|
|
2012-06-29 14:13:25 +02:00
|
|
|
{% if user.is_authenticated %}
|
|
|
|
<li><a href="{% url "accounts_index" %}">{{ user }}'s profile</a></li>
|
|
|
|
<ul class="submenu">
|
|
|
|
<li><a href="{% url "accounts_categories" %}">Categories</a></li>
|
|
|
|
<li><a href="{% url "accounts_herds" %}">Herds</a></li>
|
|
|
|
<li><a href="{% url "accounts_maintainers" %}">Maintainers</a></li>
|
|
|
|
<li><a href="{% url "accounts_packages" %}">Packages</a></li>
|
2012-07-10 16:15:06 +02:00
|
|
|
<li><a href="{% url "accounts_overlays" %}">Overlays</a></li>
|
2012-06-29 14:13:25 +02:00
|
|
|
</ul>
|
|
|
|
<li><a href="{% url "django.contrib.auth.views.logout" %}">Logout</a></li>
|
|
|
|
{% else %}
|
|
|
|
<li><a href="{% url "django.contrib.auth.views.login" %}?next={% url "accounts_index" %}">Login</a></li>
|
|
|
|
<li><a href="{% url "registration.views.register" %}">Register</a></li>
|
|
|
|
{% endif %}
|
2012-06-12 15:27:28 +02:00
|
|
|
|
2012-06-29 14:13:25 +02:00
|
|
|
<li>---</li>
|
2012-06-12 15:27:28 +02:00
|
|
|
|
2012-06-29 14:13:25 +02:00
|
|
|
{% block menu_feed %}
|
|
|
|
<li>
|
|
|
|
<img src="{{ STATIC_URL }}img/feed.png" alt="feed" />
|
|
|
|
<a title="Global Feed" href="{% url "global_feed" %}">Global Feed</a>
|
|
|
|
</li>
|
2012-08-14 14:19:57 +02:00
|
|
|
|
|
|
|
{% if user.is_authenticated %}
|
|
|
|
<li>
|
|
|
|
<img src="{{ STATIC_URL }}/img/feed.png" alt="feed" />
|
|
|
|
<a title="{{ user }} Feed" href="{% url "user_feed" %}">
|
|
|
|
{{ user }}'s Feed
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
{% endif %}
|
2012-06-29 14:13:25 +02:00
|
|
|
{% endblock %}
|
|
|
|
<li>---</li>
|
|
|
|
<li><a href="{% url "api" %}">API</a></li>
|
2012-08-14 15:32:54 +02:00
|
|
|
<li><a href="{% url "feeds" %}">Feeds</a></li>
|
2012-06-29 14:13:25 +02:00
|
|
|
<li><a href="{% url "about" %}">About</a></li>
|
|
|
|
{% endblock %}
|
|
|
|
</ul>
|
|
|
|
</div>
|
2012-04-28 18:29:21 +02:00
|
|
|
{% endblock %}
|
2012-06-29 14:13:25 +02:00
|
|
|
</div>
|
|
|
|
<div class="span1"></div>
|
2012-04-28 18:29:21 +02:00
|
|
|
</div>
|
2012-06-29 14:13:25 +02:00
|
|
|
</div>
|
2011-04-13 08:50:24 +02:00
|
|
|
</div>
|
|
|
|
<div id="footer">
|
2012-05-13 16:42:29 +02:00
|
|
|
<p>
|
|
|
|
{% block last_scan %}
|
|
|
|
{% if last_scan %}
|
|
|
|
Last scan: {{ last_scan }} ({{ last_scan|timedelta }})
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|
|
|
|
</p>
|
|
|
|
|
2011-07-21 15:00:59 +02:00
|
|
|
<p>
|
2012-04-28 18:29:21 +02:00
|
|
|
Questions, Comments, Corrections ?
|
|
|
|
Email: corentin.chary at gmail.com<br />
|
|
|
|
Copyright (C) 2011 <strong>Corentin Chary</strong><br />
|
|
|
|
Original Gentoo artwork and logos copyright (C) Gentoo Foundation.<br />
|
|
|
|
Design inspired by (stolen from) gentoo.org and bugs.gentoo.org.<br />
|
|
|
|
<em>This site is not an official Gentoo website.</em>
|
2011-07-21 15:00:59 +02:00
|
|
|
</p>
|
2011-04-13 08:50:24 +02:00
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|