Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/templates/layout.html
blob: 400f8575432f719ef09d4fa342d1409876438d6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!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">activity</a>
            <a href="/eating">eating</a>
            <a href="/sparetime">sparetime</a>
            <a href="/addentry">add entry</a>
    	</div>

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