initial commit (it has come late tho 🙁)

This commit is contained in:
Yusur 2021-02-23 22:54:08 +01:00
commit c2bf966dac
27 changed files with 1618 additions and 0 deletions

View file

@ -0,0 +1,14 @@
<p class="nl-title">
<a href="{{ n.get_url() }}" class="nl-title">{{ n.title }}</a>
</p>
<p class="nl-desc">{{ n.short_desc() }}</p>
<p class="nl-tags">Tags:
{% for tag in n.tags %}
{% set tn = tag.name %}
{% if hl_tag_name and tn == hl_tag_name %}
<strong class="nl-tag-hl">#{{ tn }}</strong>
{% else %}
<a href="/tags/{{ tn }}/" class="nl-tag">#{{ tn }}</a>
{% endif %}
{% endfor %}
</p>