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

list.html « _default « layouts - github.com/capnfabs/paperesque.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6764af78da882256285a6eda12958d8786654411 (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 "content" }}
  <section id="main" class="content-container article-pad-v">
    <div>
      <h1 id="title" style="margin-bottom: 0.75em">{{.CurrentSection.Name}}</h1>
      <ul id="list" class="list-unstyled list-of-titles">
        {{ range .Data.Pages.ByDate.Reverse }}
          <li class="{{if .Draft }}draft{{ end }}">
            <a href="{{ .RelPermalink}}">
              <span class="post-title">{{ .Title }}</span>
              <br>
              <span class="post-meta">{{ .Date.Format "January 2, 2006" }}</span>
              <br>
              <span class="post-meta">
                {{ range .Params.tags }}
                  #{{ . }}&nbsp;
                {{ end }}
              </span>
            </a>
          </li>
        {{ end }}
      </ul>
    </div>
  </section>
{{ end }}