mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-10-31 23:26:18 +00:00
21 lines
626 B
Plaintext
21 lines
626 B
Plaintext
title: $:/core/ui/DefaultSearchResultList
|
|
tags: $:/tags/SearchResults
|
|
caption: {{$:/language/Search/DefaultResults/Caption}}
|
|
|
|
\define searchResultList()
|
|
<$set name="resultCount" value="""<$count filter="[!is[system]search{$(searchTiddler)$}]"/>""">
|
|
|
|
{{$:/language/Search/Matches}}
|
|
|
|
</$set>
|
|
|
|
//<small>Title matches:</small>//
|
|
|
|
<$list filter="[!is[system]search:title{$(searchTiddler)$}sort[title]limit[250]]" template="$:/core/ui/ListItemTemplate"/>
|
|
|
|
//<small>All matches:</small>//
|
|
|
|
<$list filter="[!is[system]search{$(searchTiddler)$}sort[title]limit[250]]" template="$:/core/ui/ListItemTemplate"/>
|
|
\end
|
|
<<searchResultList>>
|