Rewrite to Django from scratch. Now it's much more user-friendly.
[cookbook.git] / example / data / template / cookbook / base.html
1 <html>
2 <head>
3     <title>{% block title %}Cookbook{% endblock %}</title>
4     <link rel="stylesheet" href="{{ STATIC_URL }}style.css" />
5     <link rel="shortcut icon" href="{{ STATIC_URL }}cookbook.ico" />
6 </head>
7
8 <body>
9     <div id="navigation">
10         {% block navigation %}
11         <ul>
12             <li><a href="/">Recipes</a></li>
13             <li><a href="/tags/">Tags</a></li>
14             <li><a href="/admin/">Admin</a></li>
15         </ul>
16         {% endblock %}
17     </div>
18     <div class="fullclear"></div>
19
20     <div id="content">
21         {% block content %}{% endblock %}
22     </div>
23     <div class="fullclear"></div>
24
25     <div id="footer">
26         <p>powered by <a href="http://physics.drexel.edu/~wking/unfolding-disasters/cookbook/">cookbook</a></p>
27     </div>
28 </body>
29 </html>