2018-05-09 19:53:12 +02:00
|
|
|
{% extends "base" %}
|
2018-04-23 12:54:37 +02:00
|
|
|
|
2018-05-09 19:53:12 +02:00
|
|
|
{% block title %}
|
2018-06-17 17:26:15 +02:00
|
|
|
{{ "New blog" | _ }}
|
2018-05-09 19:53:12 +02:00
|
|
|
{% endblock title %}
|
|
|
|
|
|
|
|
{% block content %}
|
2018-06-17 17:26:15 +02:00
|
|
|
<h1>{{ "Create a blog" | _ }}</h1>
|
2018-05-09 19:53:12 +02:00
|
|
|
<form method="post">
|
2018-06-17 17:26:15 +02:00
|
|
|
<label for="title">{{ "Title" | _ }}</label>
|
2018-05-19 16:26:56 +02:00
|
|
|
<input type="text" id="title" name="title" />
|
2018-05-09 19:53:12 +02:00
|
|
|
|
2018-06-17 20:14:58 +02:00
|
|
|
<input type="submit" value="{{ "Create blog"}}" />
|
2018-05-09 19:53:12 +02:00
|
|
|
</form>
|
2018-06-17 17:26:15 +02:00
|
|
|
| _ {% endblock content %}
|