You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
555 B
HTML
27 lines
555 B
HTML
3 years ago
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8" />
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
|
<title>Display</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>Exquisite Branch</h1>
|
||
|
<h2>Entries</h2>
|
||
|
{% for branch in branches %} {{branch['content']}} {%endfor%}
|
||
|
<h2>Branches</h2>
|
||
|
<ul>
|
||
|
{% for stream in streams %}
|
||
|
|
||
|
<li>
|
||
|
{% for branch in stream %}
|
||
|
<span>{{branch['content']}}</span>
|
||
|
{%endfor%}
|
||
|
</li>
|
||
|
|
||
|
{%endfor%}
|
||
|
</ul>
|
||
|
</body>
|
||
|
</html>
|