mirror of
https://github.com/Threnklyn/reveal-hugo.git
synced 2026-06-07 14:03:33 +02:00
Use page description if there is one
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>{{ or .Page.Title .Site.Title }}</title>
|
||||
<meta name="description" content="{{ .Site.Params.Description }}">
|
||||
<meta name="description" content="{{ or .Page.Params.Description .Site.Params.Description }}">
|
||||
<meta name="author" content="{{ .Site.Author.name }}">
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
||||
@@ -81,7 +81,7 @@
|
||||
camelize(revealHugoPageParams),
|
||||
revealHugoDependencies);
|
||||
Reveal.initialize(options);
|
||||
|
||||
|
||||
</script>
|
||||
{{ partial "reveal-hugo/body" . }}
|
||||
</body>
|
||||
|
||||
Reference in New Issue
Block a user