notion2ical/internal/server/http/views/base.django

30 lines
900 B
Plaintext

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=320, initial-scale=1.0">
<link rel="stylesheet" href="{{ static("/css/simple.min.css") }}" crossorigin="anonymous">
<link rel="stylesheet" href="{{ static("/css/style.css") }}" crossorigin="anonymous">
<title>Notion to iCal</title>
</head>
<body>
<main>
<div class="text-center">
<h1>Notion 2 iCal</h1>
{% block content %}{% endblock %}
</div>
</main>
<footer class="text-center">
<a href="https://github.com/fmartingr/notion2ical">Open source</a> |
<a href="">Service Status</a> |
<a href="https://fmartingr.com/about/">Contact</a>
{% if branding_footer_extra %}| {{ branding_footer_extra }}{% endif %}
</footer>
</body>
</html>