From c5b3dc11ebb8bf3767149c70d18f9c1f1450bab6 Mon Sep 17 00:00:00 2001 From: sergiotarxz Date: Mon, 8 May 2023 18:52:05 +0200 Subject: [PATCH] Limiting further the meta description. --- templates/layouts/default.html.ep | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/layouts/default.html.ep b/templates/layouts/default.html.ep index c327617..aa543f3 100644 --- a/templates/layouts/default.html.ep +++ b/templates/layouts/default.html.ep @@ -3,7 +3,7 @@ % my $current_category_slug = stash 'current_category_slug'; % my $description_og = stash 'description_og'; % $description_og =~ s/\s+/ /g; -% $description_og = substr $description_og, 0, 160; +% $description_og = substr $description_og, 0, 157; % $description_og =~ s/\s\S+$//; % $description_og.='...'; % my $base_url = config 'base_url';