Plume/templates/posts/new.html.tera

19 lines
473 B
Plaintext
Raw Normal View History

2018-05-09 19:53:12 +02:00
{% extends "base" %}
2018-04-23 16:25:39 +02:00
2018-05-09 19:53:12 +02:00
{% block title %}
New post
{% endblock title %}
2018-04-23 16:25:39 +02:00
2018-05-09 19:53:12 +02:00
{% block content %}
<h1>Create a post</h1>
<form class="new-post" method="post">
<input type="text" class="title" name="title" placeholder="Title">
<textarea name="content" placeholder="Content..."></textarea>
2018-05-09 19:53:12 +02:00
<label for="license">License</label>
<input type="text" id="licence" name="license" />
2018-05-09 19:53:12 +02:00
<input type="submit" value="Publish" />
2018-05-09 19:53:12 +02:00
</form>
{% endblock content %}