diff options
author | Mark Powers <mark@marks.kitchen> | 2022-10-09 14:15:10 -0500 |
---|---|---|
committer | Mark Powers <mark@marks.kitchen> | 2022-10-09 14:15:10 -0500 |
commit | c389bfda23e516d246d5772f05d755832fcf8464 (patch) | |
tree | d9a84beb51799015cacc22f59f13253aa4b6796a /themes/markskitchen/layouts | |
parent | 648a67b056df898bfdd10033ce782aa121910a7c (diff) |
Fix scaling on mobile
Diffstat (limited to 'themes/markskitchen/layouts')
-rw-r--r-- | themes/markskitchen/layouts/_default/list.html | 2 | ||||
-rw-r--r-- | themes/markskitchen/layouts/partials/head.html | 8 |
2 files changed, 2 insertions, 8 deletions
diff --git a/themes/markskitchen/layouts/_default/list.html b/themes/markskitchen/layouts/_default/list.html index 5c745d6..45c8631 100644 --- a/themes/markskitchen/layouts/_default/list.html +++ b/themes/markskitchen/layouts/_default/list.html @@ -13,7 +13,7 @@ <ul> {{ range .Pages }} <li> - <a class="link" href="{{ .RelPermalink }}">{{ .Title }} --- <i>{{ .PublishDate.Format "January 2, 2006"}}</i></a> + <a class="link" href="{{ .RelPermalink }}">{{ .Title }} <i class="item-date"> --- {{ .PublishDate.Format "January 2, 2006"}}</i></a> </li> {{ end }} </ul> diff --git a/themes/markskitchen/layouts/partials/head.html b/themes/markskitchen/layouts/partials/head.html index 3bd261e..1dac155 100644 --- a/themes/markskitchen/layouts/partials/head.html +++ b/themes/markskitchen/layouts/partials/head.html @@ -6,13 +6,7 @@ <meta name="author" content="{{ .Site.Author.name }}"> <!-- description --> - {{ if .Description }} - <meta name="description" content="{{ .Description }}"> - {{ else if and .IsPage .Summary }} - <meta name="description" content="{{ .Summary }}"> - {{ else }} - <meta name="description" content="{{ .Site.Params.description }}"> - {{ end }} + <meta name="description" content="{{ .Site.Params.Description }}"> <!-- favicon --> <link rel="icon" href="{{ .Site.Params.favicon | absURL }}"> |