mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-10-31 23:26:18 +00:00
34643a4279
Thanks @linonetwo Fixes #7197
30 lines
1.1 KiB
Plaintext
30 lines
1.1 KiB
Plaintext
title: $:/snippets/LayoutSwitcher
|
|
tags: $:/tags/ControlPanel/Appearance
|
|
caption: {{$:/language/ControlPanel/LayoutSwitcher/Caption}}
|
|
|
|
\whitespace trim
|
|
<$linkcatcher to="$:/layout">
|
|
<div class="tc-chooser">
|
|
<$list filter="[all[tiddlers+shadows]tag[$:/tags/Layout]] [[$:/core/ui/PageTemplate]] +[!is[draft]sort[name]]">
|
|
<$list
|
|
filter="[{$:/layout}!has[text]]"
|
|
variable="ignore"
|
|
emptyMessage="""\whitespace trim
|
|
<$set name="cls" filter="[all[current]field:title{$:/layout}]" value="tc-chooser-item tc-chosen" emptyValue="tc-chooser-item">
|
|
<div class=<<cls>>>
|
|
<$link to={{!!title}}>
|
|
''<$transclude tiddler={{{ [<currentTiddler>get[icon]] }}}/><$transclude field="name"/>'' - <$transclude field="description"/>
|
|
</$link></div></$set>
|
|
""">
|
|
<$set name="cls" filter="[all[current]field:title[$:/core/ui/PageTemplate]]" value="tc-chooser-item tc-chosen" emptyValue="tc-chooser-item">
|
|
<div class=<<cls>>>
|
|
<$link to={{!!title}}>
|
|
''<$transclude tiddler={{{ [<currentTiddler>get[icon]] }}}/><$transclude field="name"/>'' - <$transclude field="description"/>
|
|
</$link>
|
|
</div>
|
|
</$set>
|
|
</$list>
|
|
</$list>
|
|
</div>
|
|
</$linkcatcher>
|