aboutsummaryrefslogtreecommitdiff
path: root/generators/hugo/themes/edwin/layouts/_default/summary.html
blob: e00e0279830cdfbcd29fa13f215cd02c780ec207 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<article class="max-w-md rounded overflow-hidden shadow-lg px-6 py-4 mb-4 bg-white">

  <p class="mb-1">
    <a class="text-blue-600 no-underline font-bold text-xl" href="{{ .RelPermalink }}">{{ .Title | markdownify }}</a>
  </p>

  <p class="text-gray-700 font-bold">
    {{ partial "post-date" . }}
  </p>

  <p class="text-blue-900 text-base leading-normal my-3">
    {{ if gt (len .Summary) 200 }}
    {{slicestr .Summary 0 200 | markdownify }}...
    {{ end }}
  </p>

  <a class="text-blue-600 no-underline" href="{{ .RelPermalink }}">{{ i18n "readMore" }}</a>

</article>