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

index.html « layouts - github.com/capnfabs/paperesque.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 42ce45197b93c3402135eaedd09d278bc93b44b6 (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
29
{{ partial "header.html" . }}
<body lang="{{ .Site.LanguageCode }}">
  <div class="nav-bkg">
    <nav class="content-container pagewide-bar-padding">
      <span class="divider">/ </span>
      <a href="{{ .Site.BaseURL  }}" >{{ .Site.Title  }}</a>
      {{ partial "right-links" . }}
    </nav>
  </div>

  <section id="main" class="content-container article-pad-v">
    <div>
      <h1 id="title" style="margin-bottom: 0.75em">{{.Site.Title}}</h1>
      <ul id="list" class="list-unstyled list-of-titles">
        {{ range .Site.Params.Menu }}
          <li>
            <a href="{{ .url | relURL }}">
              <span class="post-title">{{ .name }}</span>
            </a>
          </li>
        {{ end }}
      </ul>
    </div>
  </section>

  {{ partial "footer.html" . }}
  </body>
</html>