mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-01 15:46:18 +00:00
def8e6d354
* adding trim: link-dropdown, Fields, unfold * adding trim: all remaining snippets * Fix for reversion I accidentally applied
17 lines
559 B
Plaintext
17 lines
559 B
Plaintext
title: $:/snippets/themeswitcher
|
|
|
|
\whitespace trim
|
|
<$linkcatcher to="$:/theme">
|
|
<div class="tc-chooser">
|
|
<$list filter="[plugin-type[theme]sort[title]]">
|
|
<$set name="cls" filter="[all[current]field:title{$:/theme}] [[$:/theme]!has[text]addsuffix[s/tiddlywiki/vanilla]field:title<currentTiddler>] +[limit[1]]" value="tc-chooser-item tc-chosen" emptyValue="tc-chooser-item">
|
|
<div class=<<cls>>><$link to={{!!title}}>
|
|
''<$view field="name" format="text"/>''
|
|
 
|
|
<$view field="description" format="text"/>
|
|
</$link>
|
|
</div>
|
|
</$set>
|
|
</$list>
|
|
</div>
|
|
</$linkcatcher> |