From bd24bac6cd98c88242f2ddfaa612e9c0eb46ca01 Mon Sep 17 00:00:00 2001 From: Zef Hemel Date: Tue, 21 Jan 2025 07:46:29 +0100 Subject: [PATCH] Fix order in Template Index template --- website/Library/Core/Page/Template Index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/website/Library/Core/Page/Template Index.md b/website/Library/Core/Page/Template Index.md index d269fa27..a79446f6 100644 --- a/website/Library/Core/Page/Template Index.md +++ b/website/Library/Core/Page/Template Index.md @@ -29,7 +29,7 @@ Widgets can either be automatically attached to the top or bottom of pages (matc ```query template where hooks.top -order by order +order by `order` render [[Library/Core/Query/Template]] ``` @@ -37,7 +37,7 @@ render [[Library/Core/Query/Template]] ```query template where hooks.bottom -order by order +order by `order` render [[Library/Core/Query/Template]] ``` @@ -47,6 +47,6 @@ Use with [[!silverbullet.md/Live Templates#Include]] to render useful things in ```query template where name =~ /\/Widget\// and not hooks.top and not hooks.bottom -order by order +order by `order` render [[Library/Core/Query/Template]] ```