From 846fb166e426a6811003436daa6c4e68f05c1409 Mon Sep 17 00:00:00 2001
From: Andrey <71608345+Naavlad@users.noreply.github.com>
Date: Tue, 06 Dec 2022 12:41:33 +0000
Subject: [PATCH] minor fix keywords delimit (#739)

---
 layouts/partials/head/meta-tags.html |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/layouts/partials/head/meta-tags.html b/layouts/partials/head/meta-tags.html
index aa929db..0d0b95a 100644
--- a/layouts/partials/head/meta-tags.html
+++ b/layouts/partials/head/meta-tags.html
@@ -9,7 +9,7 @@
 {{ with .Site.Params.author }}
 <meta name="author" content="{{ . }}">{{ end }}
 <meta name="description" content="{{ .Description | default (.Summary | default .Site.Params.description ) }}">
-<meta name="keywords" content="{{ (delimit .Keywords " ,") | default .Site.Params.keywords }}">
+<meta name="keywords" content="{{ (delimit .Keywords ", ") | default .Site.Params.keywords }}">
 
 {{ template "_internal/twitter_cards.html" . }}
 {{ template "_internal/opengraph.html" . }}

--
Gitblit v1.10.0