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,18 @@
{% macro desc(task) %}
{% if task.annotations %}
<p>
<strong>{{ task.description }}</strong>
</p>
<ul class="pl-4 text-sm">
{% for annotation in task.annotations %}
<li class="list-outside">
[{{date(date=annotation.entry) }}] {{ annotation.description }}
</li>
{% endfor %}
</ul>
{% else %}
<p>
{{ task.description }}
</p>
{% endif %}
{% endmacro desc %}