smooth-operator/templates/base.html
2017-06-04 17:54:02 +02:00

6 lines
176 B
HTML

<!doctype html>
<title>List of channels</title>
{% for channel in channels %}
<li><a href="/channel/{{ channel.name|urlencode }}">{{ channel.name }}</a></li>
{% endfor %}