~ubuntu-branches/ubuntu/hardy/falcon/hardy

« back to all changes in this revision

Viewing changes to share/templates/default/base.html

  • Committer: Bazaar Package Importer
  • Author(s): Brandon Holtsclaw
  • Date: 2008-01-05 10:25:46 UTC
  • Revision ID: james.westby@ubuntu.com-20080105102546-kjw6xlr1j1ux2frq
Tags: upstream-2.0.1
ImportĀ upstreamĀ versionĀ 2.0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
2
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
 
3
<!--
 
4
 This file is part of the Falcon repository manager
 
5
 Copyright (C) 2005-2008 Dennis Kaarsemaker
 
6
 See the file named COPYING in the root of the source tree for license details
 
7
-->
 
8
{% load falcontags %}
 
9
{% api 1.0 %}
 
10
  <head>
 
11
    <title>{% block title %}{{ conf.description }}{% endblock %}</title>
 
12
    {% block head %}{% endblock %}
 
13
    <link rel="stylesheet" type="text/css" href="{{ dots }}falcon.css" />
 
14
    <script type="text/javascript" src="{{dots}}falcon.js"></script>
 
15
  </head>
 
16
  <body>
 
17
    <img id="logo" src="{{dots}}falcon.png">
 
18
    <div id="top">
 
19
      <div id="topleft"> </div>
 
20
      <div id="topcenter"><a href="{{ dots }}">{{ conf.description }}</a></div>
 
21
      <div id="topright"> </div>
 
22
    </div>
 
23
    <div id="main">
 
24
      {% block main_content %}
 
25
        <div class="msgbpad"></div>
 
26
        <div class="msgbox">
 
27
           <b>Supported architectures:</b><br />{{ conf.architectures|join:" " }}
 
28
        </div>
 
29
        {% if conf.gpgkey %}
 
30
        <div class="msgbox">
 
31
          <b>GPG signatures:</b><br />
 
32
          The key used for signing is <b><a href="{{ conf.origin }}.gpg">{{ conf.gpgkey }}</a></b>
 
33
        </div>
 
34
        {% endif %}
 
35
        {% if mirror %}
 
36
        <div class="msgbox">
 
37
           You are using the mirror sponsored by <b>{{ mirror.sponsor }}</b>. <a href="#mirrors">More mirrors</a>
 
38
        </div>
 
39
        {% endif %}
 
40
        {{ conf.long_description }}
 
41
        <h3>How to use this repository</h3>
 
42
        {% if do_appinstall %} 
 
43
        For easy usage, you can install a single package making this repository
 
44
        available in apt, synaptic, adept, gnome-app-install orany other package
 
45
        management tool. These packages can be found on the pages for each release.
 
46
        If you do not want to use these packages, add the following lines to 
 
47
        {% else %}
 
48
        To use the packages in this repository, add the following lines to
 
49
        {% endif %}
 
50
        <tt>/etc/apt/sources.list</tt>
 
51
        <pre>deb MIRROR RELEASE COMPONENTS
 
52
deb-src MIRROR RELEASE COMPONENTS</pre>
 
53
        Replace MIRROR with one of the mirrors listed below, replace RELEASE with
 
54
        one of the releases listed below and replace COMPONENTS with the components
 
55
        you wish to use. A list of available components can be found on the release
 
56
        pages linked below.
 
57
        <h3>Releases</h3>
 
58
        <dl>
 
59
          {% for p in pockets %}
 
60
          <dt><a href="{{ p.distpath}}">{{ p.name }}</a></dt>
 
61
          <dd class="half">{{ p.description }}</dd>
 
62
          {% endfor %}
 
63
        </dl>
 
64
        <a name="mirrors"></a>
 
65
        {% if mirrors %}
 
66
        <h3>Mirrors</h3>
 
67
        This repository is mirrored by the following people
 
68
        <ul>
 
69
        {% for m in mirrors %}
 
70
        {% if m.has_all %}
 
71
        <li><a href="{{ m.webbase }}">{{ m.webbase }}</a> has been donated by {{ m.sponsor }} 
 
72
        and contains all packages</li>
 
73
        {% else %}
 
74
        <li><a href="{{ m.webbase }}">{{ m.webbase }}</a> has been donated by {{ m.sponsor }} 
 
75
        and contains the components <ul><li>{{ m.get_components|join:"</li><li>" }}</li></ul></li>
 
76
        {% endif %}
 
77
        {% endfor %}
 
78
        </ul>
 
79
        {% endif %}
 
80
      {% endblock %}
 
81
    </div>
 
82
    <div id="bottom">
 
83
      <div id="bottomleft"> </div>
 
84
      <div id="bottomcenter">Generated by <a href="http://www.kaarsemaker.net/software/falcon">Falcon {{ conf.falcon_version }}</a> &copy;2005-2008 Dennis Kaarsemaker</div>
 
85
      <div id="bottomright"> </div>
 
86
    </div>
 
87
  </body>
 
88
</html>