aboutsummaryrefslogtreecommitdiffstats
path: root/aggregator/templates/aggregator/post_content.html
blob: dc04741b9523e6de525131fcb54f6286fe783a51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<article class="post">
  <header>
    <hgroup>
      <h1>
        <a href="/post/{{ post.pk }}/">
          <img src="/static/images/logos/{{ post.icon }}" />
        </a>
        <a href="/post/{{ post.pk }}/">
          {{ post.title }}
        </a>
      </h1>
      <h2 class="postsubtitle">
        (<a href="{{ post.link }}">origin</a>)
      </h2>
    </hgroup>
  </header>

  <div class="postcontent">
    {% autoescape off %}
      {{ post.content }}
    {% endautoescape %}
  </div>
</article>