mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-06 01:56:20 +00:00
18 lines
952 B
Plaintext
18 lines
952 B
Plaintext
title: $:/snippets/LayoutSwitcher
|
|
tags: $:/tags/ControlPanel/Appearance
|
|
caption: {{$:/language/ControlPanel/LayoutSwitcher/Caption}}
|
|
|
|
<$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="""
|
|
<$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 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 field="name"/>'' - <$transclude field="description"/></$link></div>
|
|
</$set>
|
|
</$list>
|
|
</$list>
|
|
</div>
|
|
</$linkcatcher>
|