Inital commit

This commit is contained in:
MReenen
2021-10-20 17:23:31 +02:00
commit 52c0143a9d
10 changed files with 419 additions and 0 deletions

18
template.html Normal file
View File

@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/styles/main.css">
<title>Notes</title>
</head>
<body>
{{ header }}
{{ sidebar }}
<main>
{{ body }}
</main>
<script src="/scripts/app.js"></script>
</body>
</html>