first version of reminder web application

This commit is contained in:
Finn Christiansen 2018-12-29 18:31:10 +01:00
parent e43cba4769
commit 0c4fed2a2b
7 changed files with 316 additions and 1 deletions

21
templates/base.html Normal file
View file

@ -0,0 +1,21 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<title>Add reminders to ICS files</title>
<link rel="stylesheet" href="/static/css/style.css">
<script type="text/javascript" src="/static/js/reminder.js"></script>
</head>
<body>
<main>
{% block body %}
{% endblock %}
</main>
<footer>
<a href="https://github.com/Finn10111/caesar-chiffre">source code on github</a>
</footer>
</body>
</html>