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

<body>    
    <ul>
        <li>
            <a href="/ajax">ajax-sample</a>
        </li>
        <li>
            <a href="/gallery">gallery</a>
        </li>
    </ul>
    {% block content %}{% endblock %}
</body>