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

github.com/zerostaticthemes/hugo-serif-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Austin <rob@jugglerdigital.com>2022-03-24 07:29:13 +0300
committerRobert Austin <rob@jugglerdigital.com>2022-03-24 07:29:13 +0300
commit16beaa5d006a3ed1a68104508c4c64d302a76315 (patch)
tree4955aa1cb019bb1dc1d0d4b1c9b83e687d3b9d4a
parent4cac0afd79573148d440d4fe071dfe11cc851e0d (diff)
remove meta partialv1.2
-rw-r--r--README.md4
-rw-r--r--layouts/partials/meta-tags.html9
2 files changed, 3 insertions, 10 deletions
diff --git a/README.md b/README.md
index a3c83a6..5cacfa5 100644
--- a/README.md
+++ b/README.md
@@ -6,7 +6,6 @@ Serif is a modern business theme for Hugo. It contains multiple content types an
[Zerostatic Themes](https://www.zerostatic.io/)
![Hugo Serif Theme screenshot](https://www.zerostatic.io/theme/hugo-serif/hugo-serif-screenshot.png)
-
## Features
**Content Types**
@@ -16,9 +15,12 @@ Serif is a modern business theme for Hugo. It contains multiple content types an
**CSS**
- SCSS (Hugo Pipelines)
+- Examples of using Params from the `config.toml` as SCSS variables
- Full Responsive design
- Bootstrap 4.4 grid and media queries only
- Uncomment `@import 'bootstrap/bootstrap';` in `style.scss` to use the entire Bootstrap framework
+- Configure Google fonts from `config.toml`
+- Configure primary theme colors from `config.toml`
**Speed**
- 100/100 Google Lighthouse speed score
diff --git a/layouts/partials/meta-tags.html b/layouts/partials/meta-tags.html
deleted file mode 100644
index aa33d06..0000000
--- a/layouts/partials/meta-tags.html
+++ /dev/null
@@ -1,9 +0,0 @@
-{{ if .Params.description }}<meta name="description" content="{{ .Params.description }}"/>{{ end }}
-{{ if .Params.meta_title }}<meta property="og:title" content="{{ .Params.meta_title }}"/>{{ else }}<meta property="og:title" content="{{ .Title }}"/>{{ end }}
-<meta property="og:type" content="website"/>
-<meta property="og:url" content="{{ .Permalink }}"/>
-{{ if .Params.image }}<meta property="og:image" content="{{ .Params.image | absURL }}"/>{{ else if .Site.Params.seo.meta_og_image }}<meta property="og:image" content="{{ .Site.Params.seo.meta_og_image | absURL }}"/>{{ end }}
-{{ if .Params.description }}<meta property="og:description" content="{{ .Params.description }}"/>{{ end }}
-<meta name="twitter:card" content="summary"/>
-{{ if .Site.Params.seo.meta_twitter_site }}<meta name="twitter:site" content="{{ .Site.Params.seo.meta_twitter_site }}"/>{{ end }}
-{{ if .Site.Params.seo.meta_twitter_creator }}<meta name="twitter:creator" content="{{ .Site.Params.seo.meta_twitter_creator }}"/>{{ end }} \ No newline at end of file