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

home.html « _default « layouts « docs - github.com/twbs/icons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 59fad01c459d046ecb5bed3f77f6ed7f174da9ae (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>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
    <title>{{ .Title | markdownify }}</title>
    <meta name="description" content="{{ .Page.Params.description | default .Site.Params.description | markdownify }}">

    {{- partial "stylesheet" . }}
    {{ partial "favicons" . -}}

    <meta name="generator" content="Hugo {{ hugo.Version }}">
  </head>
  <body>
    {{ partial "navbar" . }}
    {{ partial "home" . }}

    {{ .Content }}

    {{- partial "scripts" . }}
  </body>
</html>