26 lines
No EOL
662 B
HTML
26 lines
No EOL
662 B
HTML
<!DOCTYPE html>
|
|
<html lang="en" {% if DEFAULT_THEME %}data-theme="{{ DEFAULT_THEME }}" {% endif %}>
|
|
<head>
|
|
<link rel="stylesheet" href="/dist/style.css"/>
|
|
<style>
|
|
{% if USE_FONT %}
|
|
body {
|
|
font-family: '{{ USE_FONT }}', '{{ FALLBACK_FAMILY }}';
|
|
}
|
|
{% endif %}
|
|
</style>
|
|
<script src="/dist/bundle.js" type="module"></script>
|
|
<title>
|
|
Org.Me
|
|
</title>
|
|
</head>
|
|
<body>
|
|
<div id="content" class="px-5">
|
|
<main>
|
|
<div class="toast" id="toast"></div>
|
|
<div id="list-of-tasks">{% include "tasks.html" %}</div>
|
|
<div id="ledger_things"></div>
|
|
</main>
|
|
</div>
|
|
</body>
|
|
</html> |