Files
rustical/crates/frontend/public/templates/layouts/default.html

24 lines
481 B
HTML

<!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>