aboutsummaryrefslogtreecommitdiffstats
path: root/layouts/partials/post.html
blob: a95081047aeefd1de1d1fabf555bf8d223182fc4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<article class="pv4 bt bb b--black-10">
  <a class="db no-underline dim near-black" href="{{ .RelPermalink }}">
    <h3 class="f3 baskerville mt0 lh-title">{{ .Title }}</h3>
    <div class="cf">
      {{ with resources.Get (index .Params.images 0) }}
        {{ $image := .Resize (default "320x" .Params.thumbnail_size) }}
        <div class="fl-ns mb4 mb0-ns pr3-ns">
          <img src="{{ $image.RelPermalink }}" class="db center" />
        </div>
      {{ end }}
      <div class="f5 lh-copy">
        <!-- {{ .Summary }} -->
        {{ .Summary | replaceRE `<sup.*?><a href.*?#fn:.*?footnote-ref.*?/a></sup>` "" | safeHTML }}
      </div>
    </div>
  </a>
  {{ if isset .Params "metadata" }}
    {{ partial "metadata.html" . }}
  {{ end }}
</article>