~justin-fathomdb/nova/justinsb-openstack-api-volumes

« back to all changes in this revision

Viewing changes to vendor/tornado/demos/appengine/templates/archive.html

  • Committer: Jesse Andrews
  • Date: 2010-05-28 06:05:26 UTC
  • Revision ID: git-v1:bf6e6e718cdc7488e2da87b21e258ccc065fe499
initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{% extends "base.html" %}
 
2
 
 
3
{% block head %}
 
4
  <style type="text/css">
 
5
    ul.archive {
 
6
      list-style-type: none;
 
7
      margin: 0;
 
8
      padding: 0;
 
9
    }
 
10
 
 
11
    ul.archive li {
 
12
      margin-bottom: 1em;
 
13
    }
 
14
 
 
15
    ul.archive .title {
 
16
      font-family: "Helvetica Nue", Helvetica, Arial, sans-serif;
 
17
      font-size: 14pt;
 
18
    }
 
19
  </style>
 
20
{% end %}
 
21
 
 
22
{% block body %}
 
23
  <ul class="archive">
 
24
    {% for entry in entries %}
 
25
      <li>
 
26
        <div class="title"><a href="/entry/{{ entry.slug }}">{{ escape(entry.title) }}</a></div>
 
27
        <div class="date">{{ locale.format_date(entry.published, full_format=True, shorter=True) }}</div>
 
28
      </li>
 
29
    {% end %}
 
30
  </ul>
 
31
{% end %}