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

github.com/AngeloStavrow/indigo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAngelo Stavrow <angelo@fogcreek.com>2018-08-14 16:20:29 +0300
committerAngelo Stavrow <angelo@fogcreek.com>2018-08-14 16:20:29 +0300
commit994fd986bab1cf0baa4c7cfde62929e5f2a0772e (patch)
tree5680b3d479307936138924385fa3fadae29cd4f1 /layouts/partials/head.html
parent40f121ec52d1edbfff39470dee7a0c3c9ac36061 (diff)
Initial commit
Diffstat (limited to 'layouts/partials/head.html')
-rw-r--r--layouts/partials/head.html26
1 files changed, 26 insertions, 0 deletions
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
new file mode 100644
index 0000000..a0d28f3
--- /dev/null
+++ b/layouts/partials/head.html
@@ -0,0 +1,26 @@
+<head>
+ <meta charset="utf-8">
+ <!-- Site details -->
+ <title>{{ .Site.Title }}</title>
+ <meta name="description" content="{{ .Site.Params.Description }}">
+ <meta name="author" content="{{ .Site.Params.AuthorName }}">
+ <!-- Favicon details -->
+ <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
+ <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
+ <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
+ <link rel="manifest" href="/site.webmanifest">
+ <link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
+ <meta name="msapplication-TileColor" content="#00aba9">
+ <meta name="msapplication-TileImage" content="/mstile-144x144.png">
+ <meta name="theme-color" content="#ffffff">
+ <!-- IndieWeb identity -->
+ {{ with .Site.Params.IndieWeb.EmailAddress }}<link rel="me" href="mailto:{{ . }}">{{ end }}
+ {{ with .Site.Params.IndieWeb.GitHubUser }}<link rel="me" href="https://github.com/{{ . }}">{{ end }}
+ {{ with .Site.Params.IndieWeb.TwitterUser }}<link rel="me" href="https://twitter.com/{{ . }}">{{ end }}
+ {{ with .Site.Params.IndieWeb.MicroBlogUser }}<link rel="me" href="https://micro.blog/{{ . }}">{{ end }}
+ <!-- IndieAuth endpoint -->
+ <link rel="authorization_endpoint" href="https://indieauth.com/auth">
+ <!-- Other stuff to make the site work -->
+ <link rel="stylesheet" href="{{ .Site.BaseURL }}css/style.css" />
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+</head> \ No newline at end of file