aboutsummaryrefslogtreecommitdiffstats
path: root/example/templates/index.html
blob: fd771e83c7f176e87a64c5e1014384c5e39ce14f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% load cache %}
<html>
<head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8">
    <title>Index of Tests</title>
</head>
<body>
    <h1>Index of Tests</h1>
    {% cache 10 index_cache %}
    <ul>
        <li><a href="/jquery/">jQuery 2.0.3</a></li>
        <li><a href="/mootools/">MooTools 1.4.5</a></li>
        <li><a href="/prototype/">Prototype 1.7.1.0</a></li>
    </ul>
    {% endcache %}
</body>
</html>