mirror of
https://github.com/lennart-k/rustical.git
synced 2025-12-13 22:52:22 +00:00
22 lines
425 B
HTML
22 lines
425 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>
|
|
<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>
|