pytron-web/templates/index.html.tera

12 lines
265 B
Plaintext

{% 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 %}