1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-12-02 14:29:55 +00:00
TiddlyWiki5/core/wiki/paletteswitcher.tid
2024-11-09 16:15:33 +00:00

27 lines
835 B
Plaintext

title: $:/snippets/paletteswitcher
\whitespace trim
\procedure actions()
<$transclude $variable="actions-switch-colour-palette" paletteTitle=<<navigateTo>>/>
\end actions
<$linkcatcher actions=<<actions>>>
<div class="tc-chooser tc-chooser-cards">
<$list filter="[all[shadows+tiddlers]tag[$:/tags/Palette]sort[name]]">
<$set name="cls" filter="[all[current]prefix{$:/palette}]" value="tc-chooser-item tc-chosen" emptyValue="tc-chooser-item">
<div class=<<cls>>>
<$link to={{!!title}}>
{{||$:/snippets/currpalettepreview}}
<div class="tc-chooser-item-description">
''<$view field="name" format="text"/>''
<div class="tc-chooser-item-subtitle">
<$view field="description" format="text"/>
</div>
</div>
</$link>
</div>
</$set>
</$list>
</div>
</$linkcatcher>