aboutsummaryrefslogtreecommitdiff
path: root/layouts/_default/summary.html
blob: 5e4ac4b8dfe4d995690b0434d16742704990e794 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<div class='post' style="margin-bottom: 2em;">
  <div>
    <h1 class="f3 near-black">
      <a href="{{ .RelPermalink }}" class="link black dim">
        {{ .Title }}
      </a>
      {{ if isset .Params "rating" }}
        {{ .Params.rating }}
      {{ end }}
    </h1>
    <p>
      {{ .Date | time.Format ":date_full" }}
    </p>
    <div>
      {{ .Summary | markdownify }}
    </div>
  </div>
</div>