implemented basic ui

This commit is contained in:
Oscar Krause
2023-01-02 18:01:44 +01:00
parent 9605ba3eee
commit bcba15bde4
29 changed files with 607 additions and 39 deletions

View File

@@ -0,0 +1,15 @@
{% extends 'layouts/bootstrap-dashboard.html' %}
{% block title %}
<title>Origins</title>
{% endblock %}
{% block content %}
<div>
<div class="d-flex justify-content-between flex-wrap flex-md-nowrap align-items-center pt-3 pb-2 mb-3 border-bottom">
<div class="overflow-hidden">
{{ markdown|safe }}
</div>
</div>
</div>
{% endblock %}