Welcome to mirror list, hosted at ThFree Co, Russian Federation.

list.html « _default « layouts - github.com/darshanbaral/ghazal.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e020f5165077dddede59546d722e835189b28f0e (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
{{ define "main" }}

<h1 style="margin: 0; text-decoration: underline;">
  {{- .Title -}}
</h1>

<div>
  {{ range (.Paginator .Site.Params.theme.paginateNum).Pages }}
  <div
    style="border: solid 1px; margin: 30px 0; padding: 10px; border-radius: 5px; background-color: var(--bgAltColor);"
  >
    <a href="{{ .Permalink | relURL }}">
      <h2 style="margin: 0; font-size: 1.2em;">{{ .Title -}}</h2>
    </a>
    <span style="font-size: 0.65em; font-style: italic;"
      ><time
        >{{- dateFormat .Site.Params.theme.dateFormat .Date }}</time
      > &middot; {{.Site.Params.author }}</span
    >
    <p style="margin: 0; font-size: 0.8em;">{{ substr .Summary 0 125 | plainify }}...</p>
  </div>
  {{ end }}
</div>
{{ end }}