16 lines
240 B
HTML
16 lines
240 B
HTML
|
<html>
|
||
|
<head>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<h1>{{ name }}</h1>
|
||
|
|
||
|
<h3>branches:</h3>
|
||
|
<ul>
|
||
|
{% for branch in branches %}
|
||
|
{{ branch }}
|
||
|
{% endfor %}
|
||
|
</ul>
|
||
|
</body>
|
||
|
</html>
|