mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-08 19:09:57 +00:00
33 lines
1.3 KiB
Plaintext
33 lines
1.3 KiB
Plaintext
|
title: $:/plugins/tiddlywiki/text-slicer/templates/template-heading
|
||
|
|
||
|
\define config-heading-status()
|
||
|
$(tv-heading-status-config-title)$/$(currentTiddler)$
|
||
|
\end
|
||
|
|
||
|
\define body(level:"h1")
|
||
|
<$set name="tv-heading-status-config-title" value=<<config-heading-status>>>
|
||
|
<div class="tc-document-tiddler">
|
||
|
<div class="tc-document-tiddler-toolbar">
|
||
|
<$reveal type="nomatch" state=<<tv-heading-status-config-title>> text="open" default=<<tv-default-heading-state>>>
|
||
|
<$button set=<<tv-heading-status-config-title>> setTo="open" class="tc-btn-invisible">
|
||
|
{{$:/core/images/down-arrow}}
|
||
|
</$button>
|
||
|
</$reveal>
|
||
|
<$reveal type="match" state=<<tv-heading-status-config-title>> text="open" default=<<tv-default-heading-state>>>
|
||
|
<$button set=<<tv-heading-status-config-title>> setTo="close" class="tc-btn-invisible">
|
||
|
{{$:/core/images/right-arrow}}
|
||
|
</$button>
|
||
|
</$reveal>
|
||
|
</div>
|
||
|
<$link tag="$level$" class="tc-document-tiddler-link">
|
||
|
<$view field="text"/>
|
||
|
</$link>
|
||
|
<$reveal type="nomatch" state=<<tv-heading-status-config-title>> text="open" default=<<tv-default-heading-state>>>
|
||
|
<$list filter="[tag<currentTiddler>!has[draft.of]]" template="$:/plugins/tiddlywiki/text-slicer/templates/template-tiddler" listItem="item"/>
|
||
|
</$reveal>
|
||
|
</div>
|
||
|
</$set>
|
||
|
\end
|
||
|
|
||
|
<$macrocall $name="body" level={{!!toc-heading-level}}/>
|