feat: move packages to root and remove unused dependencies

This commit is contained in:
t.lettermann
2024-07-24 11:15:14 +02:00
parent 83cee11e65
commit 1f57b70cef
34 changed files with 2 additions and 3 deletions

13
clego/templates/base.html Normal file
View File

@ -0,0 +1,13 @@
<!doctype html>
<html lang="en">
<head>
<title>{% block title %}{{ title }}{% endblock %}</title>
<script src="/assets/js/htmx.min.js.js"></script>
{% block head %}{% endblock %}
</head>
<body>
{% block body %}{% endblock %}
</body>
</html>