view templates/base.djhtml @ 8:8be7bdae8fb6

Fix some bugs on how static data was served during debug
author Jordi Gutiérrez Hermoso <jordigh@gmail.com>
date Sat, 26 Jun 2010 02:19:08 -0500
parents 6c2d400091fd
children 2da64c6aa689
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="This stuff is all free under the AGPLv3 or at you 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" />
    <link href="/static/print.css" 
          rel="stylesheet" type="text/css" media="print" />
      {% block extrahead %}{% endblock %}
  </head>

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

  <div id="container">
    <div id="header">
      <h1 id="logo"><a href="http://www.octave.org/"><img src="/static/icon.png"
      alt="Octave" /></a></h1>
      <ul id="nav-global">
        <li id="nav-homepage"><a href="/">Home</a></li>
        <li id="nav-about"><a href="/about">About</a></li>
        <li id="nav-news"><a href="/news">News</a></li>
      </ul>
    </div>
    <!-- END Header -->
    <div id="billboard">{% block billboard %}{% endblock %}</div>
    <div id="columnwrap">
      {% block columnwrap %}
        <div id="content-main">
        {% block content %}{% endblock %}
        </div>
        <!-- END #content-main -->
      {% endblock %}
    </div>
    <!-- END #content -->
    <div id="footer">
      <p>
        &copy; 2005-{% now "Y" %} <a href="http://www.octave.org">John
        W. Eaton and others</a> unless otherwise noted.
      </p>
    </div>
    <!-- END #footer -->
  </div>
  <!-- END #container -->
  </body>
</html>