From 2c1452673dae803d85b5c12ce4d888cc5a996ea6 Mon Sep 17 00:00:00 2001 From: st1020 Date: Sat, 18 May 2024 22:50:04 +0800 Subject: [PATCH] fix: the description meta tag should be page.description --- templates/partials/head.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/partials/head.html b/templates/partials/head.html index 63d12e4..10117eb 100644 --- a/templates/partials/head.html +++ b/templates/partials/head.html @@ -15,7 +15,7 @@ {% set page_title = page.title | default(value=config.title) %} - {% set description = page.summary | default(value=page_title) %} + {% set description = page.description | default(value=page_title) %}