aboutsummaryrefslogtreecommitdiffstats
path: root/example/templates/index.html
blob: d7d8a2b37d0b1a9b6ffff6f03131f87a90463a41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{% 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/index/">jQuery 1.2.6</a></li>
        <li><a href="/mootools/index/">MooTools 1.2.4</a></li>
        <li><a href="/prototype/index/">Prototype 1.6.1</a></li>
    </ul>
    {% endcache %}
</body>
</html>