{% extends 'layout.html.twig' %} {% block body %}

Edit Index: {{ title }}

{% if q %}

Results for “{{ q }}”

{% if results is empty %}
No results.
{% else %} {% for article in results %} {% endfor %}
📄 {{ article.title }}
slug: {{ article.slug }}
{% set pubkey = article.pubkey %} {{ pubkey|slice(0,8) ~ '…' ~ pubkey|slice(-4) }}
{% endif %} {% endif %}

Current entries

{% if current is empty %}
No entries yet.
{% else %} {% for item in current %} {% endfor %}
{% if item.kind == '30023' %} 📄 {{ item.slug }} {% elseif item.kind == '30040' %} 📁 {{ item.slug }} {% else %} {{ item.slug }} {% endif %}
coord: {{ item.coord }}
{{ item.pubkey|slice(0,8) ~ '…' ~ item.pubkey|slice(-4) }} {% if item.kind == '30023' %}
{% endif %}
{% endif %}
{% endblock %}