From a7d8a2977d6110d1f8778b8ae02067982a5e43a7 Mon Sep 17 00:00:00 2001 From: jeffreytse Date: Tue, 29 Sep 2020 12:54:54 +0800 Subject: fix: some function params not working --- _includes/functions/get_reading_time.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to '_includes/functions/get_reading_time.html') diff --git a/_includes/functions/get_reading_time.html b/_includes/functions/get_reading_time.html index d28b69c..7747108 100644 --- a/_includes/functions/get_reading_time.html +++ b/_includes/functions/get_reading_time.html @@ -1,9 +1,9 @@ -{% if include.article %} - {% assign article = include.article %} +{% if include.params.article %} + {% assign article = include.params.article %} {% endif %} -{% if include.speed %} - {% assign speed = include.speed %} +{% if include.params.speed %} + {% assign speed = include.params.speed %} {% else %} {% assign speed = 160 %} {% endif %} -- cgit v1.2.3