1
0
forked from finn/site

30 lines
678 B
HTML
Raw Permalink Normal View History

2024-08-01 02:07:49 -07:00
{% extends "base.html" %}
2024-08-05 09:09:51 -07:00
{% block indexcurrent %}class="current"{% endblock %}
2024-08-01 02:07:49 -07:00
{% block content %}
2024-08-01 11:10:49 -07:00
<h1>Hello, {{ current_user.username }}!</h1>
2024-08-04 13:14:58 -07:00
{% if form %}
<form action="" method="post">
{{ form.hidden_tag() }}
<p>
{{ form.post.label }}
{{ form.post(cols=32, rows=4) }}
{% for error in form.post.errors %}
<span style="color: red;">[{{ error }}]</span>
{% endfor %}
</p>
<p>{{ form.submit() }}</p>
</form>
{% endif %}
2024-08-01 02:07:49 -07:00
{% for post in posts %}
2024-08-04 13:14:58 -07:00
{% include '_post.html' %}
2024-08-01 02:07:49 -07:00
{% endfor %}
2024-08-04 13:14:58 -07:00
{% if prev_url %}<a href="{{ prev_url }}">Newer Posts</a>{% endif %}
{% if next_url %}<a href="{{ next_url }}">Older Posts</a>{% endif %}
2024-08-01 02:07:49 -07:00
{% endblock %}