Plume/templates/blogs/new.tera

16 lines
314 B
Plaintext
Raw Normal View History

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 type="text" id="title" name="title" />
2018-05-09 19:53:12 +02:00
<input type="submit" value="Create blog" />
2018-05-09 19:53:12 +02:00
</form>
{% endblock content %}