~widelands-dev/widelands-website/trunk

« back to all changes in this revision

Viewing changes to templates/news/post_archive_month.html

  • Committer: Holger Rapp
  • Date: 2009-02-21 18:24:02 UTC
  • Revision ID: sirver@kallisto.local-20090221182402-k3tuf5c4gjwslbjf
Main Page contains now the same informations as before

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{% extends "news/base_news.html" %}
 
2
 
 
3
 
 
4
{% block title %}Post archive for {{ month|date:"F Y" }}{% endblock %}
 
5
{% block body_class %}{{ block.super }} post_archive_month{% endblock %}
 
6
 
 
7
 
 
8
{% block content_title %}
 
9
  <h2>Post archive for {{ month|date:"F Y" }}</h2>
 
10
{% endblock %}
 
11
 
 
12
 
 
13
{% block content %}
 
14
  <div class="post_list">
 
15
    {% for post in object_list %}
 
16
    <div>
 
17
      <h3 class="title"><a href="{{ post.get_absolute_url }}">{{ post.title }}</a></h3>
 
18
      <p class="date">{{ post.publish|date:"Y F d" }}</p>
 
19
      <p class="tease">{{ post.tease }}</p>
 
20
    </div>
 
21
    {% endfor %}
 
22
  </div>
 
23
{% endblock %}