frontend: remove the nodejs stuff, I don't think I need it for such a simple project

This commit is contained in:
Lennart
2024-11-03 13:32:57 +01:00
parent bb0b055e50
commit 957a5d5f48
11 changed files with 4 additions and 889 deletions

View File

@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{% block title %}RustiCal{% endblock %}</title>
<script src="/frontend/assets/htmx.org.js"></script>
<style>
* {
box-sizing: border-box;
}
</style>
{% block imports %}{% endblock %}
</head>
<body>
<div id="app" hx-boost="true">
{% block content %}<p>Placeholder</p>{% endblock %}
</div>
</body>
</html>