aboutsummaryrefslogtreecommitdiffstats
path: root/templates/aggregator/post_content.html
diff options
context:
space:
mode:
authorGravatar Tom Willemsen2012-04-05 02:35:54 +0200
committerGravatar Tom Willemsen2012-04-05 02:49:05 +0200
commit109ce58492b91b7562995188d5e69dcafb488de1 (patch)
treed548c1ddd389852d33a4260804728362ba970637 /templates/aggregator/post_content.html
parent0f827b264413cbb035aee908dba5955bbd396f07 (diff)
downloadryuslash.org-109ce58492b91b7562995188d5e69dcafb488de1.tar.gz
ryuslash.org-109ce58492b91b7562995188d5e69dcafb488de1.zip
Add header tags, hope I did it right.
Diffstat (limited to 'templates/aggregator/post_content.html')
-rw-r--r--templates/aggregator/post_content.html36
1 files changed, 20 insertions, 16 deletions
diff --git a/templates/aggregator/post_content.html b/templates/aggregator/post_content.html
index 36b419d..fa1c654 100644
--- a/templates/aggregator/post_content.html
+++ b/templates/aggregator/post_content.html
@@ -1,20 +1,24 @@
<div class="post {{ post.feed.name|slugify }}">
- <h3>
- <a href="/post/{{ post.pk }}/"><img src="{{ post.feed.get_favicon_url }}" /></a>
- <a href="/post/{{ post.pk }}/">
- {% if post.feed.uses_title %}
- {{ post.title }}
- {% else %}
- {{ post.updated }}
- {% endif %}
- </a>
- </h3>
- <div class="postsubtitle">
- Via
- <a href="{{ post.feed.base_url }}">{{ post.feed.name }}</a>
- (<a href="{{ post.feed.get_profile_url }}">profile</a>,
- <a href="{{ post.remote_url }}">origin</a>)
- </div>
+ <header>
+ <h3>
+ <a href="/post/{{ post.pk }}/">
+ <img src="{{ post.feed.get_favicon_url }}" />
+ </a>
+ <a href="/post/{{ post.pk }}/">
+ {% if post.feed.uses_title %}
+ {{ post.title }}
+ {% else %}
+ {{ post.updated }}
+ {% endif %}
+ </a>
+ </h3>
+ <div class="postsubtitle">
+ Via
+ <a href="{{ post.feed.base_url }}">{{ post.feed.name }}</a>
+ (<a href="{{ post.feed.get_profile_url }}">profile</a>,
+ <a href="{{ post.remote_url }}">origin</a>)
+ </div>
+ </header>
<div class="postcontent">
{% autoescape off %}