view templates/base.djhtml @ 12:c6cfbdd40bf6

Fix some CSS errors, put a gradient in the header
author Jordi Gutiérrez Hermoso <jordigh@gmail.com>
date Sat, 26 Jun 2010 14:32:12 -0500
parents af51826204fd
children cc12c8b6625f
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">
      <h1 id="logo"><a href="http://www.octave.org/">Agora
      Octave</a> <span id="agora-logo"><img src="/static/agora.png"></span></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="/news">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">
      {% block columnwrap %}
        <div id="content-main">
        {% block content %}{% endblock %}
        </div>
        <!-- END #content-main -->
      {% endblock %}
    </div>
    <!-- END #content -->
    <div id="footer">
      <p>
        &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>