Plume/templates/blogs/new.html.tera
2018-06-17 22:22:34 +02:00

15 lines
348 B
Plaintext

{% extends "base" %}
{% block title %}
{{ "New blog" | _ }}
{% endblock title %}
{% block content %}
<h1>{{ "Create a blog" | _ }}</h1>
<form method="post">
<label for="title">{{ "Title" | _ }}</label>
<input type="text" id="title" name="title" />
<input type="submit" value="{{ "Create blog" | _ }}"/>
</form>
{% endblock content %}