{% extends 'layout.html.twig' %} {% form_theme form _self %} {% block quill_widget %}
{{ value|raw }}
{% endblock %} {% block body %}
{% if not is_granted('ROLE_USER') %}

A Nostr identity is required to post articles.

{% endif %}
{{ form_start(form) }} {{ form_row(form.slug) }} {{ form_row(form.title) }} {{ form_row(form.summary) }} {{ form_row(form.content) }} {{ form_row(form.image) }}
{{ form_row(form.topics) }} {{ form_row(form.clientTag, { 'row_attr': {'class': 'mb-3 form-check'}, 'label_attr': {'class': 'form-check-label'}, 'attr': {'class': 'form-check-input'} }) }} {{ form_row(form.isDraft, { 'row_attr': {'class': 'mb-3 form-check'}, 'label_attr': {'class': 'form-check-label'}, 'attr': {'class': 'form-check-input'} }) }}
{{ form_end(form) }}
{% endblock %} {% block aside %} {# Show recent articles and drafts to load for editing #} {% if is_granted('ROLE_USER') %}

Recent

Drafts

{% endif %} {% endblock %}