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

list.html « _default « layouts « docs - github.com/twbs/icons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f48afc101e1077860046866d52da9905119d512e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!doctype html>
<html lang="en">
  <head>
    {{ partial "head" . }}
  </head>
  <body class="d-flex flex-column min-vh-100">
    {{ partialCached "skippy" . }}
    {{ partialCached "navbar" . }}

    <main class="my-auto p-5" id="content">
      <ul>
        {{ range .Pages }}
          <li>
            <a href="{{ .Permalink }}">{{ .Title }}</a>
          </li>
        {{ end }}
      </ul>
    </main>

    {{- partialCached "scripts" . "default" }}
  </body>
</html>