Use bootstrap

This commit is contained in:
traxys 2023-08-28 22:07:40 +02:00
parent f1089232c3
commit 45f89df858
4 changed files with 58 additions and 59 deletions

View file

@ -1,19 +1,10 @@
<!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">
<h1 class="title">Page not found</h1>
</div>
</section>
</body>
</html>
{% extends "base.html" %}
{% block title %}
Page not found
{% endblock title %}
{% block head %}
{{ super() }}
{% endblock head %}
{% block content %}
<h1>Page not found</h1>
{% endblock content %}