taskwarrior web package
This commit is contained in:
parent
e79220af5c
commit
b16d004685
16 changed files with 4093 additions and 1 deletions
26
modules/home/tww/dist/templates/base.html
vendored
Normal file
26
modules/home/tww/dist/templates/base.html
vendored
Normal 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>
|
Loading…
Add table
Add a link
Reference in a new issue