aboutsummaryrefslogtreecommitdiffstats
path: root/aggregator/templates/aggregator/post_content.html
blob: 46e642f0093723c43330ae013822c1849c8e1ef8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<article class="post">
  <header>
    <h1>
      <a href="{{ post.link }}">
        <img src="/static/images/logos/{{ post.icon }}" />
        {{ post.title }}
      </a>
    </h1>
  </header>

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