mirror of https://github.com/mitsuhiko/flask.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
790 B
28 lines
790 B
{% extends 'base.html' %} |
|
|
|
{% block header %} |
|
<h1>{% block title %}Posts{% endblock %}</h1> |
|
{% if g.user %} |
|
<a class="action" href="{{ url_for('blog.create') }}">New</a> |
|
{% endif %} |
|
{% endblock %} |
|
|
|
{% block content %} |
|
{% for post in posts %} |
|
<article class="post"> |
|
<header> |
|
<div> |
|
<h1>{{ post['title'] }}</h1> |
|
<div class="about">by {{ post['username'] }} on {{ post['created'].strftime('%Y-%m-%d') }}</div> |
|
</div> |
|
{% if g.user['id'] == post['author_id'] %} |
|
<a class="action" href="{{ url_for('blog.update', id=post['id']) }}">Edit</a> |
|
{% endif %} |
|
</header> |
|
<p class="body">{{ post['body'] }}</p> |
|
</article> |
|
{% if not loop.last %} |
|
<hr> |
|
{% endif %} |
|
{% endfor %} |
|
{% endblock %}
|
|
|