1
0
mirror of https://github.com/moepman/bk-dss synced 2024-09-28 00:33:32 +02:00
bk-dss/templates/index.html

10 lines
192 B
HTML
Raw Normal View History

{% extends "base.html" %}
{% block content %}
<p>Hello, World!</p>
{% endblock %}
{% block navigation %}
<ul>
<li><a href="{{ url_for('login') }}">Login</a></li>
</ul>
{% endblock %}