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

list.html « _default « layouts - github.com/lubang/hugo-hello-programmer-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a84aa6d11e219a489f20d84cbbf7fd3c4e9d244e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{{ partial "header.html" . }}

{{ range .Data.Pages }}
<div class="post-list-item">
  <a href="{{ .Permalink }}">
    <div class="post-title">
      <img src="{{ "/images/post-title-icon.svg" | relURL }}" />
      <div class="post-meta">
        <time>{{ .Date.Format "02 Jan 2006, 15:04" }}</time>
        <h1>{{ .Title }}</h1>
      </div>
    </div>
  </a>
</div>
{{ end }}

{{ partial "pagination.html" . }}

<div class="seperator">
  <img src="{{ "/images/seperator.svg" | relURL }}" />
</div>

{{ partial "footer.html" . }}