mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-12-02 14:29:55 +00:00
23 lines
711 B
Plaintext
23 lines
711 B
Plaintext
title: $:/snippets/paletteswitcher
|
|
|
|
\whitespace trim
|
|
<$linkcatcher to="$:/palette">
|
|
<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>
|