Fix order in Template Index template
parent
517cfb209a
commit
bd24bac6cd
|
@ -29,7 +29,7 @@ Widgets can either be automatically attached to the top or bottom of pages (matc
|
||||||
```query
|
```query
|
||||||
template
|
template
|
||||||
where hooks.top
|
where hooks.top
|
||||||
order by order
|
order by `order`
|
||||||
render [[Library/Core/Query/Template]]
|
render [[Library/Core/Query/Template]]
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -37,7 +37,7 @@ render [[Library/Core/Query/Template]]
|
||||||
```query
|
```query
|
||||||
template
|
template
|
||||||
where hooks.bottom
|
where hooks.bottom
|
||||||
order by order
|
order by `order`
|
||||||
render [[Library/Core/Query/Template]]
|
render [[Library/Core/Query/Template]]
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -47,6 +47,6 @@ Use with [[!silverbullet.md/Live Templates#Include]] to render useful things in
|
||||||
```query
|
```query
|
||||||
template
|
template
|
||||||
where name =~ /\/Widget\// and not hooks.top and not hooks.bottom
|
where name =~ /\/Widget\// and not hooks.top and not hooks.bottom
|
||||||
order by order
|
order by `order`
|
||||||
render [[Library/Core/Query/Template]]
|
render [[Library/Core/Query/Template]]
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in New Issue