34 lines
1 KiB
HTML
34 lines
1 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en" class="h-full bg-white">
|
||
|
{% include "head.html" %}
|
||
|
<body class="h-full">
|
||
|
|
||
|
<div class="h-full">
|
||
|
{% set current_page = "documents" %}
|
||
|
{% include "components/sidebar.html" %}
|
||
|
|
||
|
<main class="pl-72 bg-gray-50 h-full">
|
||
|
<form action="" method="POST" class="h-full flex flex-col">
|
||
|
<div class="py-1 px-1 gap-x-1 flex flex-row justify-center align-middle bg-accent text-accent-content">
|
||
|
<h1 class="grow text-2xl font-bold">{{ document.title }}</h1>
|
||
|
<a class="btn btn-sm my-auto" href="/documents">
|
||
|
{{ "arrow-left"|heroicon("w-6 h-6")|safe }} Exit
|
||
|
</a>
|
||
|
<a class="btn btn-sm my-auto" href="/documents/edit/{{ document.id }}">Edit</a>
|
||
|
</div>
|
||
|
|
||
|
<div class="py-8 px-4 h-full prose prose-md">
|
||
|
{{ rendered_document|safe }}
|
||
|
</div>
|
||
|
</form>
|
||
|
</main>
|
||
|
|
||
|
|
||
|
<script type="text/javascript" src="/static/main.js"></script>
|
||
|
<script type="text/javascript">
|
||
|
window.makeEditor("#editor-{{document.id}}", {{ document.content | tojson }});
|
||
|
</script>
|
||
|
|
||
|
</body>
|
||
|
</html>
|