16 lines
336 B
Plaintext
16 lines
336 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 name="title">
|
|
|
|
<input type="submit" value="{{ "Create blog"}}"/>
|
|
</form>
|
|
| _ {% endblock content %}
|