taskwarrior web package

This commit is contained in:
Matt Nish-Lapidus 2025-04-02 19:09:02 -04:00
parent e79220af5c
commit b16d004685
16 changed files with 4093 additions and 1 deletions

View file

@ -0,0 +1,26 @@
<!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>