17 lines
414 B
HTML
17 lines
414 B
HTML
|
{% extends 'layout.html' %}
|
|||
|
|
|||
|
{% block title %}Posts{% endblock %}
|
|||
|
|
|||
|
{% block content %}
|
|||
|
<h1>Posts</h1>
|
|||
|
<p>You have <strong>{{ posts.length }}</strong> posts!</p>
|
|||
|
<p><a href="/post/new">Create a Post</a></p>
|
|||
|
<ul id="posts">
|
|||
|
{% for post in posts %}
|
|||
|
<li>
|
|||
|
<h2>{{ post.title }}</h2>
|
|||
|
<p><a href="/post/{{ post.id }}">Read post</a></p>
|
|||
|
</li>
|
|||
|
{% endfor %}
|
|||
|
</ul>
|
|||
|
{% endblock %}
|