view 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
line wrap: on
line source

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  <head>
    <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
    <meta http-equiv="Content-Language" content="en-us" />

    <title>Agora Octave &mdash; 
      {% block title %}
      Free your math!
      {% endblock %}
    </title>

    <meta name="Copyright" content="Agora Octave is free software
    under the Affero General Public License version 3 as published by
    the Free Software Foundation, or at your option, any later
    version" />

    <meta name="keywords" content="Octave, mathematics, numerical
    analysis, open source, free software, Agora" />

    <meta name="description" content="Agora Octave is a website that
    enables collaboration with Octave-related personal projects and
    code" />

    <link href="/static/{% block cssid %}base{% endblock %}.css" 
          rel="stylesheet" type="text/css" media="screen" />
    {% block extrahead %}{% endblock %}
  </head>

  <body id="{% block sectionid %}generic{% endblock %}" 
        class="{% block coltype %}default{% endblock %}">

  <div id="container">
    <div id="header">
      <img src="/static/agora.png" id="agora-logo">
      <h1 id="logo"><a href="/">Agora Octave</a> 
      </h1>
      <div id="nav">
        <div id="nav-top"></div>
        <ul  id="nav-main">
          <li id="nav-homepage"><a href="/bundles" class="first">Latest</a></li>
          <li id="nav-snippets"><a href="/about">Snippets</a></li>
          <li id="nav-discuss"><a href="/discuss">Discussions</a></li>
          <li id="nav-about"><a href="/news">About</a></li>

        </ul>
        <div id="nav-bot"></div>
      </div>
    </div>
    <!-- END Header -->
    <div id="billboard">{% block billboard %}{% endblock %}</div>
    <div id="columnwrap">

		  <div id="content-main">
		    {% block content %}
		    {% endblock %}
		  </div>
		  <!-- END #content-main -->
		  <div id="content-related" class="sidebar">
		    {% block content-related %}
		    {% endblock %}
		  </div>
		  <!-- END #content-related -->

    </div>
    <!-- END #content -->
    <div id="footer">
      <p id="copyright">
        &copy; 1998-{% now "Y"%} 
        <a href="http://www.gnu.org/software/octave/acknowledgments.html">
          John W. Eaton and others</a> unless otherwise noted.
      </p>
    </div>
    <!-- END #footer -->
  </div>
  <!-- END #container -->
  </body>
</html>