mirror of
https://github.com/lennart-k/rustical.git
synced 2025-12-14 10:32:19 +00:00
18 lines
406 B
HTML
18 lines
406 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>
|
|
<link rel="stylesheet" href="/frontend/assets/style.css" />
|
|
{% block imports %}{% endblock %}
|
|
</head>
|
|
|
|
<body>
|
|
<div id="app">
|
|
{% block content %}<p>Placeholder</p>{% endblock %}
|
|
</div>
|
|
</body>
|
|
</html>
|