summaryrefslogtreecommitdiffstats
path: root/scripts/page.lua
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/page.lua')
-rw-r--r--scripts/page.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/page.lua b/scripts/page.lua
index 3df55ec..3f77464 100644
--- a/scripts/page.lua
+++ b/scripts/page.lua
@@ -73,7 +73,7 @@ function d1_page_to_list_item(meta, p)
73 subtitle = p.subtitle, 73 subtitle = p.subtitle,
74 date = p.date, 74 date = p.date,
75 last_update = p.last_update, 75 last_update = p.last_update,
76 show_date = meta.list_order == "date_desc", 76 show_date = p.show_date,
77 schema_type = p.schema_type, 77 schema_type = p.schema_type,
78 draft = p.draft, 78 draft = p.draft,
79 position = p.position, 79 position = p.position,
@@ -94,7 +94,7 @@ function d2_page_to_list_item(meta, cat, p, set_cat_title)
94 category = set_cat_title and cat.title, 94 category = set_cat_title and cat.title,
95 date = p.date, 95 date = p.date,
96 last_update = p.last_update, 96 last_update = p.last_update,
97 show_date = cat.list_order == "date_desc", 97 show_date = p.show_date,
98 schema_type = p.schema_type, 98 schema_type = p.schema_type,
99 draft = p.draft, 99 draft = p.draft,
100 position = p.position, 100 position = p.position,