aboutsummaryrefslogtreecommitdiff
path: root/www/layouts/partials/preview/article.html
blob: 62454349d16a0b9b89f8bfb98a19976ae7d6291f (plain)
1
2
3
4
5
6
7
8
9
10
<section class="article-preview">
  <span class="date">{{ .date | time.Format ":date_medium" }}</span>
  {{ (printf `<%[1]s class="title"><a href="%s">%s</a></%[1]s>` .h .link .title) | safeHTML }}
  <p class="content">
    {{ range split .content "\n" | first 5 }}
      {{ . | htmlUnescape }}<br/>
    {{ end }}
  </p>
  <p>... <a class="mono-link" href="{{ .link }}">Read more</a></p>
</section>