{% if not embedded %}{% extends 'base/base.html' %}{% endif %} {% import 'input/textbox.html' as textbox with context %} {% import 'blog/macros.html' as blog with context %} {% import 'input/form.html' as form with context %} {% import 'input/field.html' as field with context %} {% block body %}

New blog post

{% trans %}edit{% endtrans %} {% trans %}preview{% endtrans %}

{% call form.form(id="blog_post_edit", class="is-flex-grow-1") %} {{ field.text("title", _("title"), help=_("title is optional"))}} {{ field.text("tags", _("tags"), placeholder=_("tags are comma separated"))}} {{ field.textarea("body", "", rows=12, cols=none, help=_("You can use markdown syntax"), required=true) }} {{ field.submit(_("Publish"), class="is-fullwidth is-outlined has-text-weight-bold") }} {% endcall %}
{% endblock body %}