]> git.p6c8.net - pcdenotes.git/blob - notes/templates/note_base.html
Fixed some things in the templates
[pcdenotes.git] / notes / templates / note_base.html
1 {% load markdownify %}
2 <!DOCTYPE html>
3
4 <html lang="en">
5 <head>
6 <title>{% block title %}{% endblock %}</title>
7 <meta charset="UTF-8" />
8 <meta name="viewport" content="width=device-width, initial-scale=1.0" />
9 <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet">
10 <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script>
11 </head>
12 <body>
13
14 <div class="container-fluid p-5 bg-primary text-white text-center">
15 <h1><a href="/" class="link-light">Notes</a></h1>
16 </div>
17
18 <div id="content" class="container mt-5">
19 {% block content %}{% endblock %}
20 </div>
21 </body>
22 </html>

patrick-canterino.de