{% for item in list %}
{% set cid = item.id|default('') %}
{% set cpk = item.pubkey|default('') %}
{% set cts = item.created_at|default(null) %}
{% if item.kind is defined and item.kind == 1 %}
kind 1
{% elseif item.kind is defined and item.kind == 1111 %}
1111
{% endif %}
{% if cpk != '' %}{% else %}Unknown{% endif %}
{% if cts is not null and cts != '' %}{{ cts|date('F j Y') }}{% endif %}
{% if cid != '' and commentLinks[cid] is defined and commentLinks[cid]|length > 0 %}
{% endif %}
{% endfor %}
{% if quotes is defined and quotes|length > 0 %}
Quotes and references
Other notes that cite this article in a q tag (NIP-18) or reference its address in a / A (e.g. generic reposts, highlights).
{% for item in quotes %}
{% set cid = item.id|default('') %}
{% set cpk = item.pubkey|default('') %}
{% set cts = item.created_at|default(null) %}
{% if item.kind is defined and item.kind == 1 %} kind 1 {% elseif item.kind is defined and item.kind == 1111 %} 1111 {% endif %} {% if cpk != '' %} {% else %}Unknown{% endif %}
{% if cts is not null and cts != '' %}{{ cts|date('F j Y') }}{% endif %}