chiark
/
gitweb
/
~mdw
/
backup-rotation
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Initial commit. Actually written ages ago.
[backup-rotation]
/
templates
/
root.html
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 %}