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.
35 lines
871 B
35 lines
871 B
{% extends 'base.html' %}
|
|
|
|
{% block title %}
|
|
帖子列表
|
|
{% endblock %}
|
|
|
|
|
|
{% block left %}
|
|
|
|
|
|
<div id="main">
|
|
|
|
<div class="archives">
|
|
|
|
{% for post in postList %}
|
|
|
|
<article class="archive-article archive-type-post">
|
|
<div class="archive-article-inner">
|
|
<header class="archive-article-header">
|
|
<a href="#" class="archive-article-date">
|
|
<time>{{ post.created|date:'Y-m' }}</time>
|
|
</a>
|
|
|
|
<h1 itemprop="name">
|
|
<a class="archive-article-title" target="_blank" href="/post/{{ post.id }}">{{ post.title }}</a>
|
|
</h1>
|
|
</header>
|
|
</div>
|
|
</article>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
</div>
|
|
{% endblock %} |