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

github.com/austingebauer/devise.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAustin Gebauer <34121980+austingebauer@users.noreply.github.com>2022-11-12 07:59:32 +0300
committerGitHub <noreply@github.com>2022-11-12 07:59:32 +0300
commitcaab8f4379fb1c0c3613cc26eea1479deb413ca5 (patch)
tree90a477eddf83f04cb8c236df9dc03a6bdbf8f7e7
parente271af0cb291ba81ccf0a2aabc6c45d1b1e905f1 (diff)
parente1d54cfff34b277cbbe95e807ccf9942d296b8a6 (diff)
Merge pull request #23 from fabianski7/patch-1main
Call the right variable to get the site title
-rw-r--r--layouts/partials/head.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
index 41b5754..516b02f 100644
--- a/layouts/partials/head.html
+++ b/layouts/partials/head.html
@@ -1,5 +1,5 @@
<head>
- <title>{{ .Title }}</title>
+ <title>{{ .Site.Title }}</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="{{if .IsHome}}{{ $.Site.Params.description }}{{else}}{{.Description}}{{end}}" />