Files
webcal-dashboard/server/app/templates/base.html
2024-12-16 16:45:24 -06:00

14 lines
334 B
HTML

<!DOCTYPE html>
<html>
<head>
{% block head %}
<title>{% block title %}{% endblock %}</title>
<!-- <link rel="stylesheet" href="style.css"> -->
<style>{% include "style.css"%}</style>
<meta name="viewport" content="width=600, height=800" />
{% endblock %}
</head>
<body>
{% block content %}{% endblock %}
</body>
</html>