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

project.html « section « layouts - github.com/lubang/hugo-hello-programmer-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ed1c0c8bf0c7d84ebc09289bd5212d04f616a414 (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" . }}

<div class="project">
  <div class="post-meta">
    <h1>Project</h1>
  </div>
  <div>
    {{ range .Data.Pages }}
    <a href="{{ .Permalink }}">
      <div class="item">
          <h1>{{ .Title }}</h1>
          <description>{{ .Date.Format "02 Jan 2006, 15:04" }}</description>
      </div>
    </a>
    {{ end }}
  </div>
</div>

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

{{ partial "footer.html" . }}