aboutsummaryrefslogtreecommitdiff
path: root/layouts/post/summary.html
blob: 8a4e774306292323bb0fc2dad8792aa4c1aa00e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{{ $lang := .Site.Data.even.default -}}
<article class="post">
  <header class="post-header">
    <h1 class="post-title"><a class="post-link" href="{{ .URL }}">{{ .Title }}</a></h1>
    <div class="post-meta">
      <span class="post-time">
        {{ .Date.Format "2006-01-02" }}
      </span>
      {{ with .Params.categories -}}
        <div class="post-category">
          {{ range . -}}
            <a href="/categories/{{ . | urlize }}">{{ . }}</a>
          {{- end }}
        </div>
      {{- end }}
    </div>
  </header>
  <!-- Content -->
  <div class="post-content">
    <div class="post-summary">
      {{ .Summary }}
    </div>
    <div class="read-more">
      <a href="{{ .URL }}" class="read-more-link">{{ $lang.posts.readmore }}</a>
    </div>
  </div>
</article>