Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/templates/layout.html
blob: f758e15ce52cebd5cd52c89f7a2fa245134a1826 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!doctype html>
{% from "_helpers.html" import link_to %}
<head>
    <title>{{ title }}</title>
    <script src="/static/js/jquery-1.6.2.min.js" type="text/javascript"></script>
    <link rel=stylesheet type=text/css href="/static/css/style.css">
    {% block head %}{% endblock %}
</head>

<body>    
    <div class=page>
	<div class=metanav>
	    <a href="/main">well being</a>
            <a href="/eating">eating</a>
            <a href="/sparetime">activities</a>
    	</div>

    {% block content %}{% endblock %}
</body>