pytron-web/templates/index.html.tera

12 lines
265 B
Plaintext
Raw Normal View History

2019-03-16 11:04:06 +01:00
{% extends "base" %}
{% block content %}
<section class="section">
<div class="container">
<h1 class="title is-1">Welcome to Pytron</h1>
{% for ia in ias %}
<h5>{{ ia }}</h5>
{% endfor %}
</div>
</section>
{% endblock %}