microblog/app/templates/index.html

28 lines
746 B
HTML
Raw Normal View History

2017-09-05 06:28:11 +00:00
{% extends "base.html" %}
{% block content %}
2017-09-13 06:31:39 +00:00
<h1>Hi, {{ current_user.username }}!</h1>
2017-09-18 05:41:40 +00:00
{% if form %}
<form action="" method="post">
{{ form.hidden_tag() }}
<p>
{{ form.post.label }}<br>
{{ form.post(cols=32, rows=4) }}<br>
{% for error in form.post.errors %}
<span style="color: red;">[{{ error }}]</span>
{% endfor %}
</p>
<p>{{ form.submit() }}</p>
</form>
{% endif %}
2017-09-05 06:28:11 +00:00
{% for post in posts %}
2017-09-18 05:41:40 +00:00
{% include '_post.html' %}
2017-09-05 06:28:11 +00:00
{% endfor %}
2017-09-18 05:41:40 +00:00
{% if prev_url %}
<a href="{{ prev_url }}">Newer posts</a>
{% endif %}
{% if next_url %}
<a href="{{ next_url }}">Older posts</a>
{% endif %}
2017-09-05 06:28:11 +00:00
{% endblock %}