16 lines
309 B
HTML
16 lines
309 B
HTML
|
<!doctype html>
|
||
|
<title>vtbash</title>
|
||
|
{% block body %}
|
||
|
{% for j in i %}
|
||
|
<p style="background-color: rgba(255,102,0,.2);">
|
||
|
#{{ j + 1 }}<br>
|
||
|
{% for line in entries[j] %}
|
||
|
{{ line }}<br>
|
||
|
{% endfor %}
|
||
|
</p>
|
||
|
<br>
|
||
|
{% else %}
|
||
|
<p>Unbelievable. No Entries here so far</p>
|
||
|
{% endfor %}
|
||
|
{% endblock %}
|