mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2024-11-20 10:31:17 +00:00
14 lines
348 B
Text
14 lines
348 B
Text
{% 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 %}
|