Nicole Tietz-Sokolskaya
e0653e4bdd
This is a big dump of a lot of code, mostly making it so that: - we have a key-value store - we can create/save/load projects and documents - there's a sidebar layout with some placeholders we may or may not need - other stuff I forgot Reviewed-on: #1
19 lines
363 B
HTML
19 lines
363 B
HTML
<!DOCTYPE html>
|
|
<html lang="en" class="h-full bg-white">
|
|
{% include "head.html" %}
|
|
<body class="h-full">
|
|
|
|
<div>
|
|
{% set current_page = "home" %}
|
|
{% include "components/sidebar.html" %}
|
|
|
|
<main class="py-10 pl-72">
|
|
<div class="px-8">
|
|
Main content.
|
|
</div>
|
|
</main>
|
|
|
|
|
|
<script type="text/javascript" src="/static/main.js"></script>
|
|
</body>
|
|
</html>
|