mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2024-11-20 10:31:17 +00:00
15 lines
393 B
Text
15 lines
393 B
Text
{% extends "base" %}
|
|
{% import "macros" as macros %}
|
|
|
|
{% block title %}
|
|
{{ "New blog" | _ }}
|
|
{% endblock title %}
|
|
|
|
{% block content %}
|
|
<h1>{{ "Create a blog" | _ }}</h1>
|
|
<form method="post">
|
|
{{ macros::input(name="title", label="Title", errors=errors, form=form, props='required minlength="1"') }}
|
|
|
|
<input type="submit" value="{{ "Create blog" | _ }}"/>
|
|
</form>
|
|
{% endblock content %}
|