Plume/templates/blogs/new.tera

16 lines
314 B
Text
Raw Normal View History

2018-05-09 17:53:12 +00:00
{% extends "base" %}
2018-04-23 10:54:37 +00:00
2018-05-09 17:53:12 +00: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 17:53:12 +00:00
<input type="submit" value="Create blog" />
2018-05-09 17:53:12 +00:00
</form>
{% endblock content %}