chiark / gitweb /
Initial commit. Actually written ages ago.
[backup-rotation] / templates / root.html
CommitLineData
d03bd7cd
MW
1{#-*-html-*-#}
2
3{% extends "base.html" %}
4
5{% block title %}Greetings!{% endblock %}
6{% block content %}
7<h1>Hello, {{ request.values.who |default('world') }}</h1>
8{% set comma = joiner(", ") -%}
9<p>Testing, testing, {{ '' }}
10{%- for i in range(1, 4) -%}
11{{ comma() }}{{ i -}}
12{% endfor %}.
13{% endblock %}