From 3ad69d391267efb2c4442ee0b8998bae29e7e466 Mon Sep 17 00:00:00 2001 From: Aminda Suomalainen Date: Mon, 3 Jun 2024 10:48:33 +0300 Subject: [PATCH] Enable jekyll-seo-tag --- _config.yml | 27 +++++++++++++++++++-------- _includes/footer.html | 32 ++++++++++++++++++++++++++++++++ _includes/head.html | 7 +++---- assets/main.scss | 3 ++- 4 files changed, 56 insertions(+), 13 deletions(-) create mode 100644 _includes/footer.html diff --git a/_config.yml b/_config.yml index 262c82292..8a87cee7c 100644 --- a/_config.yml +++ b/_config.yml @@ -1,24 +1,35 @@ -# Site settings theme: minima -title: Mikaela's supybot site -#email: your-email@domain.com +title: Mikaela's Supybot site +tagline: Things official documentation may not tell you +author: + name: "Aminda Suomalainen" + url: "https://aminda.eu/" description: > # this means to ignore newlines until "baseurl:" Mikaela's Supybot site where nowadays the only content is security issues of stock Supybot. baseurl: "" # the subpath of your site, e.g. /blog/ url: "https://supybot.mikaela.info/" # the base hostname & protocol for your site -#twitter_username: jekyllrb github_username: Mikaela - -# Custom settings lang: en timezone: Etc/UTC encoding: utf-8 plugins: - - jekyll-mentions - - jemoji + # - jekyll-mentions - jekyll-redirect-from - jekyll-sitemap + - jekyll-seo-tag sitemap: file: "/sitemap.xml" include: [robots.txt] +icon: https://github.com/ProgVal/Supybot-website/raw/master/static/logo.png +markdown: kramdown +kramdown: + parse_block_html: true +#webmaster_verifications: +#google: +#bing: +defaults: + - scope: + path: "*" + values: + image: https://github.com/ProgVal/Supybot-website/raw/master/static/logo.png diff --git a/_includes/footer.html b/_includes/footer.html new file mode 100644 index 000000000..c5268bd6d --- /dev/null +++ b/_includes/footer.html @@ -0,0 +1,32 @@ + diff --git a/_includes/head.html b/_includes/head.html index efefa49b4..f26c2b104 100644 --- a/_includes/head.html +++ b/_includes/head.html @@ -2,11 +2,10 @@ + + {%- seo -%} + - {% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %} - - - diff --git a/assets/main.scss b/assets/main.scss index 4a0e878b8..2eb826b81 100644 --- a/assets/main.scss +++ b/assets/main.scss @@ -3,7 +3,8 @@ --- @charset "utf-8"; -$base-font-family: ui-sans-serif, "Liberation Sans", Arimo, Arial, sans-serif; +$base-font-family: ui-sans-serif, system-ui, "Liberation Sans", Arimo, Arial, + sans-serif; $monospace-font-family: ui-monospace, "Liberation Mono", Cousine, "Courier New", monospace;