Use bootstrap
This commit is contained in:
parent
f1089232c3
commit
45f89df858
4 changed files with 58 additions and 59 deletions
|
|
@ -1,25 +1,16 @@
|
|||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<title>{{ title }}</title>
|
||||
<link
|
||||
rel="stylesheet"
|
||||
href="https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css"
|
||||
/>
|
||||
</head>
|
||||
<body>
|
||||
<section class="section">
|
||||
<div class="container">
|
||||
{% extends "base.html" %}
|
||||
{% block title %}
|
||||
Mail management
|
||||
{% endblock title %}
|
||||
{% block head %}
|
||||
{{ super() }}
|
||||
{% endblock head %}
|
||||
{% block content %}
|
||||
<div class="container">
|
||||
<h1 class="title is-1">Mail management</h1>
|
||||
<h2 class="title is-2">Mails</h2>
|
||||
<ul>
|
||||
{% for mail in mails %}
|
||||
<li>{{mail.mail}}</li>
|
||||
{% endfor %}
|
||||
{% for mail in mails %}<li>{{ mail.mail }}</li>{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
</section>
|
||||
</body>
|
||||
</html>
|
||||
</div>
|
||||
{% endblock content %}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue