done: Blog Blueprint

This commit is contained in:
Heiko Ludwig 2025-08-11 11:39:59 +02:00
parent 0703cf5543
commit 6d4419df0d
5 changed files with 168 additions and 0 deletions

View file

@ -0,0 +1,15 @@
{% extends 'base.html' %}
{% block header %}
<h1>{% block title %}New Post{% endblock %}</h1>
{% endblock %}
{% block content %}
<form method="post">
<label for="title">Title</label>
<input name="title" id="title" value="{{ request.form['title'] }}" required>
<label for="body">Body</label>
<textarea name="body" id="body">{{ request.form['body'] }}</textarea>
<input type="submit" value="Save">
</form>
{% endblock %}