nixos-config/modules/home/tww/dist/templates/base.html

26 lines
662 B
HTML
Raw Normal View History

2025-04-02 19:09:02 -04:00
<!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>