annotate templates/base.djhtml @ 23:d9658d30b814

Implement initial user registration and authentication. Still way buggy.
author Jordi Gutiérrez Hermoso <jordigh@gmail.com>
date Sun, 27 Jun 2010 21:56:57 -0500
parents cb9a7c6c3800
children b2fd20d03fb4
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7
6c2d400091fd Decouple bundle urlconfs; improve the skeleton layout to more than a few bones
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents:
diff changeset
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
6c2d400091fd Decouple bundle urlconfs; improve the skeleton layout to more than a few bones
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents:
diff changeset
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
6c2d400091fd Decouple bundle urlconfs; improve the skeleton layout to more than a few bones
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents:
diff changeset
3 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
6c2d400091fd Decouple bundle urlconfs; improve the skeleton layout to more than a few bones
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents:
diff changeset
4 <head>
6c2d400091fd Decouple bundle urlconfs; improve the skeleton layout to more than a few bones
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents:
diff changeset
5 <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
6c2d400091fd Decouple bundle urlconfs; improve the skeleton layout to more than a few bones
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents:
diff changeset
6 <meta http-equiv="Content-Language" content="en-us" />
6c2d400091fd Decouple bundle urlconfs; improve the skeleton layout to more than a few bones
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents:
diff changeset
7
23
d9658d30b814 Implement initial user registration and authentication. Still way buggy.
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents: 17
diff changeset
8 <title>Agora Octave &mdash;
d9658d30b814 Implement initial user registration and authentication. Still way buggy.
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents: 17
diff changeset
9 {% block title %}
d9658d30b814 Implement initial user registration and authentication. Still way buggy.
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents: 17
diff changeset
10 Free your math!
d9658d30b814 Implement initial user registration and authentication. Still way buggy.
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents: 17
diff changeset
11 {% endblock %}
d9658d30b814 Implement initial user registration and authentication. Still way buggy.
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents: 17
diff changeset
12 </title>
7
6c2d400091fd Decouple bundle urlconfs; improve the skeleton layout to more than a few bones
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents:
diff changeset
13
9
2da64c6aa689 Begin implementing Fotios' design
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents: 8
diff changeset
14 <meta name="Copyright" content="Agora Octave is free software
2da64c6aa689 Begin implementing Fotios' design
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents: 8
diff changeset
15 under the Affero General Public License version 3 as published by
2da64c6aa689 Begin implementing Fotios' design
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents: 8
diff changeset
16 the Free Software Foundation, or at your option, any later
2da64c6aa689 Begin implementing Fotios' design
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents: 8
diff changeset
17 version" />
7
6c2d400091fd Decouple bundle urlconfs; improve the skeleton layout to more than a few bones
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents:
diff changeset
18
6c2d400091fd Decouple bundle urlconfs; improve the skeleton layout to more than a few bones
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents:
diff changeset
19 <meta name="keywords" content="Octave, mathematics, numerical
6c2d400091fd Decouple bundle urlconfs; improve the skeleton layout to more than a few bones
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents:
diff changeset
20 analysis, open source, free software, Agora" />
6c2d400091fd Decouple bundle urlconfs; improve the skeleton layout to more than a few bones
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents:
diff changeset
21
6c2d400091fd Decouple bundle urlconfs; improve the skeleton layout to more than a few bones
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents:
diff changeset
22 <meta name="description" content="Agora Octave is a website that
6c2d400091fd Decouple bundle urlconfs; improve the skeleton layout to more than a few bones
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents:
diff changeset
23 enables collaboration with Octave-related personal projects and
6c2d400091fd Decouple bundle urlconfs; improve the skeleton layout to more than a few bones
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents:
diff changeset
24 code" />
6c2d400091fd Decouple bundle urlconfs; improve the skeleton layout to more than a few bones
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents:
diff changeset
25
8
8be7bdae8fb6 Fix some bugs on how static data was served during debug
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents: 7
diff changeset
26 <link href="/static/{% block cssid %}base{% endblock %}.css"
7
6c2d400091fd Decouple bundle urlconfs; improve the skeleton layout to more than a few bones
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents:
diff changeset
27 rel="stylesheet" type="text/css" media="screen" />
23
d9658d30b814 Implement initial user registration and authentication. Still way buggy.
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents: 17
diff changeset
28 {% block extrahead %}{% endblock %}
7
6c2d400091fd Decouple bundle urlconfs; improve the skeleton layout to more than a few bones
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents:
diff changeset
29 </head>
6c2d400091fd Decouple bundle urlconfs; improve the skeleton layout to more than a few bones
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents:
diff changeset
30
6c2d400091fd Decouple bundle urlconfs; improve the skeleton layout to more than a few bones
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents:
diff changeset
31 <body id="{% block sectionid %}generic{% endblock %}"
6c2d400091fd Decouple bundle urlconfs; improve the skeleton layout to more than a few bones
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents:
diff changeset
32 class="{% block coltype %}default{% endblock %}">
6c2d400091fd Decouple bundle urlconfs; improve the skeleton layout to more than a few bones
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents:
diff changeset
33
6c2d400091fd Decouple bundle urlconfs; improve the skeleton layout to more than a few bones
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents:
diff changeset
34 <div id="container">
6c2d400091fd Decouple bundle urlconfs; improve the skeleton layout to more than a few bones
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents:
diff changeset
35 <div id="header">
17
cb9a7c6c3800 Implement rounded boxes and titles for holding content
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents: 15
diff changeset
36 <img src="/static/agora.png" id="agora-logo">
23
d9658d30b814 Implement initial user registration and authentication. Still way buggy.
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents: 17
diff changeset
37 <h1 id="logo"><a href="/">Agora Octave</a>
15
3058a25a7c7c Use new simpler Agora logo
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents: 13
diff changeset
38 </h1>
9
2da64c6aa689 Begin implementing Fotios' design
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents: 8
diff changeset
39 <div id="nav">
2da64c6aa689 Begin implementing Fotios' design
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents: 8
diff changeset
40 <div id="nav-top"></div>
2da64c6aa689 Begin implementing Fotios' design
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents: 8
diff changeset
41 <ul id="nav-main">
2da64c6aa689 Begin implementing Fotios' design
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents: 8
diff changeset
42 <li id="nav-homepage"><a href="/bundles" class="first">Latest</a></li>
2da64c6aa689 Begin implementing Fotios' design
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents: 8
diff changeset
43 <li id="nav-snippets"><a href="/about">Snippets</a></li>
17
cb9a7c6c3800 Implement rounded boxes and titles for holding content
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents: 15
diff changeset
44 <li id="nav-discuss"><a href="/discuss">Discussions</a></li>
9
2da64c6aa689 Begin implementing Fotios' design
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents: 8
diff changeset
45 <li id="nav-about"><a href="/news">About</a></li>
2da64c6aa689 Begin implementing Fotios' design
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents: 8
diff changeset
46
2da64c6aa689 Begin implementing Fotios' design
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents: 8
diff changeset
47 </ul>
2da64c6aa689 Begin implementing Fotios' design
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents: 8
diff changeset
48 <div id="nav-bot"></div>
2da64c6aa689 Begin implementing Fotios' design
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents: 8
diff changeset
49 </div>
7
6c2d400091fd Decouple bundle urlconfs; improve the skeleton layout to more than a few bones
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents:
diff changeset
50 </div>
6c2d400091fd Decouple bundle urlconfs; improve the skeleton layout to more than a few bones
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents:
diff changeset
51 <!-- END Header -->
6c2d400091fd Decouple bundle urlconfs; improve the skeleton layout to more than a few bones
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents:
diff changeset
52 <div id="billboard">{% block billboard %}{% endblock %}</div>
6c2d400091fd Decouple bundle urlconfs; improve the skeleton layout to more than a few bones
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents:
diff changeset
53 <div id="columnwrap">
17
cb9a7c6c3800 Implement rounded boxes and titles for holding content
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents: 15
diff changeset
54
cb9a7c6c3800 Implement rounded boxes and titles for holding content
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents: 15
diff changeset
55 <div id="content-main">
cb9a7c6c3800 Implement rounded boxes and titles for holding content
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents: 15
diff changeset
56 {% block content %}
cb9a7c6c3800 Implement rounded boxes and titles for holding content
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents: 15
diff changeset
57 {% endblock %}
cb9a7c6c3800 Implement rounded boxes and titles for holding content
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents: 15
diff changeset
58 </div>
cb9a7c6c3800 Implement rounded boxes and titles for holding content
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents: 15
diff changeset
59 <!-- END #content-main -->
cb9a7c6c3800 Implement rounded boxes and titles for holding content
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents: 15
diff changeset
60 <div id="content-related" class="sidebar">
cb9a7c6c3800 Implement rounded boxes and titles for holding content
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents: 15
diff changeset
61 {% block content-related %}
cb9a7c6c3800 Implement rounded boxes and titles for holding content
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents: 15
diff changeset
62 {% endblock %}
cb9a7c6c3800 Implement rounded boxes and titles for holding content
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents: 15
diff changeset
63 </div>
cb9a7c6c3800 Implement rounded boxes and titles for holding content
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents: 15
diff changeset
64 <!-- END #content-related -->
cb9a7c6c3800 Implement rounded boxes and titles for holding content
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents: 15
diff changeset
65
7
6c2d400091fd Decouple bundle urlconfs; improve the skeleton layout to more than a few bones
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents:
diff changeset
66 </div>
6c2d400091fd Decouple bundle urlconfs; improve the skeleton layout to more than a few bones
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents:
diff changeset
67 <!-- END #content -->
6c2d400091fd Decouple bundle urlconfs; improve the skeleton layout to more than a few bones
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents:
diff changeset
68 <div id="footer">
13
cc12c8b6625f Add a grey agora in the main background, move title to the left, increase footer size, change main section background colour to match agora logo
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents: 12
diff changeset
69 <p id="copyright">
9
2da64c6aa689 Begin implementing Fotios' design
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents: 8
diff changeset
70 &copy; 1998-{% now "Y"%}
2da64c6aa689 Begin implementing Fotios' design
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents: 8
diff changeset
71 <a href="http://www.gnu.org/software/octave/acknowledgments.html">
17
cb9a7c6c3800 Implement rounded boxes and titles for holding content
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents: 15
diff changeset
72 John W. Eaton and others</a> unless otherwise noted.
7
6c2d400091fd Decouple bundle urlconfs; improve the skeleton layout to more than a few bones
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents:
diff changeset
73 </p>
6c2d400091fd Decouple bundle urlconfs; improve the skeleton layout to more than a few bones
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents:
diff changeset
74 </div>
6c2d400091fd Decouple bundle urlconfs; improve the skeleton layout to more than a few bones
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents:
diff changeset
75 <!-- END #footer -->
6c2d400091fd Decouple bundle urlconfs; improve the skeleton layout to more than a few bones
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents:
diff changeset
76 </div>
6c2d400091fd Decouple bundle urlconfs; improve the skeleton layout to more than a few bones
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents:
diff changeset
77 <!-- END #container -->
6c2d400091fd Decouple bundle urlconfs; improve the skeleton layout to more than a few bones
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents:
diff changeset
78 </body>
6c2d400091fd Decouple bundle urlconfs; improve the skeleton layout to more than a few bones
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents:
diff changeset
79 </html>
6c2d400091fd Decouple bundle urlconfs; improve the skeleton layout to more than a few bones
Jordi Gutiérrez Hermoso <jordigh@gmail.com>
parents:
diff changeset
80