summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <code@mail.matthias.benkard.de>2011-03-12 20:30:24 +0100
committerMatthias Andreas Benkard <code@mail.matthias.benkard.de>2011-03-12 20:30:24 +0100
commit1253162e55d3f93d476958907491ef0014777bda (patch)
treed33126574c2cec3bf93365a3ae0574d02407edb0 /templates
parent6501daf7d0906f97125613c82af911aeed734971 (diff)
Improve journal archive table layout and labelling.
Diffstat (limited to 'templates')
-rw-r--r--templates/journal_page.html16
1 files changed, 8 insertions, 8 deletions
diff --git a/templates/journal_page.html b/templates/journal_page.html
index 978b3f0..d9646f3 100644
--- a/templates/journal_page.html
+++ b/templates/journal_page.html
@@ -18,23 +18,23 @@
{.section minor-articles}
<div class="old-entries">
- <h2>&#196;ltere Eintr&#228;ge</h2>
+ <h2>{archive-title}</h2>
<p><a href="{full-archive-link|html-attr-value}" rel="archives">{full-archive-label|html}</a></p>
<table class="old-entry-table">
- <caption>Eintr&#228;ge nach Datum</caption>
+ <caption>{archive-table-caption}</caption>
<thead>
<tr>
- <th scope="col">Titel</th>
- <th scope="col">Datum</th>
- <th scope="col">Kommentare</th>
+ <th scope="col">{archive-title-label}</th>
+ <th scope="col">{archive-date-label}</th>
+ <th scope="col">{archive-comments-label}</th>
</tr>
</thead>
<tbody>
{.repeated section @}
<tr>
- <td><a href="{link|html-attr-value}">{title}</a></td>
- <td style="text-align: right">{publishing-date|html-short-human-date}</td>
- <td><a href="{comments-link|html-attr-value}">{comments-label|html}</a></td>
+ <td class="archive-title"><a href="{link|html-attr-value}">{title}</a></td>
+ <td class="archive-date">{publishing-date|html-short-human-date}</td>
+ <td class="archive-comment-number"><a href="{comments-link|html-attr-value}">{comments-label|html}</a></td>
</tr>
{.end}
</tbody>