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

github.com/twbs/icons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'docs/layouts/_default/home.html')
-rw-r--r--docs/layouts/_default/home.html22
1 files changed, 22 insertions, 0 deletions
diff --git a/docs/layouts/_default/home.html b/docs/layouts/_default/home.html
new file mode 100644
index 000000000..59fad01c4
--- /dev/null
+++ b/docs/layouts/_default/home.html
@@ -0,0 +1,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>