Plume/templates/blogs/new.tera
Madeorsk 12d85c6ec5 New design
+ New design!
+ Added link for author name in comments.
+ Added author full name in comments.
* Fixed label / input relation linking.
2018-05-19 16:29:42 +02:00

16 lines
314 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 type="text" id="title" name="title" />
<input type="submit" value="Create blog" />
</form>
{% endblock content %}