Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/atoideweb/controllers/templates/layout.html
blob: ba91e6e6e7d38b8810d6f6a994a4f3c7f4e14243 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<!doctype html>
{% from "_helpers.html" import link_to %}
{% from "_helpers.html" import options %}
<head>
    <title>{{ title }}</title>
    <script src='/static/js/jquery.js' }}" type="text/javascript"></script>
    {% block head %}{% endblock %}
</head>

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