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 %}
|
|
|
|
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 %}
|