OLD | NEW |
1 {% extends 'layout.html' %} | 1 {% extends 'layout.html' %} |
2 | 2 |
3 {% block scripts %} | 3 {% block scripts %} |
4 <script src="gif.js?v={{ version }}"></script> | 4 <script src="gif.js?v={{ version }}"></script> |
5 <script src="scripts/main.js?v={{ version }}"></script> | 5 <script src="scripts/main.js?v={{ version }}"></script> |
6 {% endblock %} | 6 {% endblock %} |
7 | 7 |
8 {% block body %} | 8 {% block body %} |
9 | 9 |
10 <h2>Usage</h2> | 10 <h2>Usage</h2> |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 </div> | 101 </div> |
102 | 102 |
103 <h2>Other tests</h2> | 103 <h2>Other tests</h2> |
104 <ul> | 104 <ul> |
105 {% for test in contents.tests._.pages %} | 105 {% for test in contents.tests._.pages %} |
106 <li><a href="{{ test.url }}">{{ test.title }}</a></li> | 106 <li><a href="{{ test.url }}">{{ test.title }}</a></li> |
107 {% endfor %} | 107 {% endfor %} |
108 </ul> | 108 </ul> |
109 | 109 |
110 {% endblock %} | 110 {% endblock %} |
OLD | NEW |