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

section.html « posts « layouts - github.com/g1eny0ung/hugo-theme-dream.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 27a8a488f813b573c71d420b47848acc92196f70 (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
28
{{ define "title" }}
{{- .Title -}}
{{ end }}

{{ define "main"}}

{{ partial "header.html" . }}

<div class="ui container">
  <article class="ui segment dream-posts-section">
    <h2 class="ui large header">
      {{ .Title }}
      <div class="ui grey sub header">{{ .Content }}</div>
    </h2>

    {{ range .Data.Pages.GroupByDate "2006" }}
    <h3 class="ui medium header">{{ .Key }}</h3>
    <ul>
      {{ range .Pages }}
      <li>
        <a href="{{ .Permalink }}">{{ .Title }}</a>
      </li>
      {{ end }}
    </ul>
    {{ end }}
  </article>
</div>
{{ end }}