{% extends 'layout.html.j2' %} {% block content %} {% set action = url_for('update_post', post_id = post.id) if post else url_for('create_post') %}

{{ "edit post" if post else "new post" }}

{{ form.title(class="form__text-field") }}
{{ form.slug(class="form__text-field") }}
{{ form.date(class="form__date-field") }}
{{ form.content(class="form__textarea", rows=10) }}
{% if show_markdown_preview %}

Preview

{% endif %}
{% endblock %}