aboutsummaryrefslogtreecommitdiffstats
path: root/templates/aggregator/post_content.html
diff options
context:
space:
mode:
authorGravatar Tom Willemsen2012-05-21 22:26:37 +0200
committerGravatar Tom Willemsen2012-05-21 22:26:37 +0200
commit44cdd17a88595e16a9fd43f55e9dac38a0047e6b (patch)
treeca36baa776f717b1c2b6c0a64be48d034b7a5253 /templates/aggregator/post_content.html
parent8944ff3fba186e71a7349c1a06153f32650e77d4 (diff)
downloadryuslash.org-44cdd17a88595e16a9fd43f55e9dac38a0047e6b.tar.gz
ryuslash.org-44cdd17a88595e16a9fd43f55e9dac38a0047e6b.zip
Move templates
Moved templates into the aggregator app's folder.
Diffstat (limited to 'templates/aggregator/post_content.html')
-rw-r--r--templates/aggregator/post_content.html34
1 files changed, 0 insertions, 34 deletions
diff --git a/templates/aggregator/post_content.html b/templates/aggregator/post_content.html
deleted file mode 100644
index e47de93..0000000
--- a/templates/aggregator/post_content.html
+++ /dev/null
@@ -1,34 +0,0 @@
-<article class="post {{ post.feed.name|slugify }}">
- <header>
- <hgroup>
- <h1>
- <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>
- </h1>
- <h2 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>)
- </h2>
- </hgroup>
- </header>
-
- <div class="postcontent">
- {% autoescape off %}
- {% if post.feed.br2nl %}
- {{ post.body|linebreaks }}
- {% else %}
- {{ post.body }}
- {% endif %}
- {% endautoescape %}
- </div>
-</article>