mirror of
https://github.com/Jermolene/TiddlyWiki5.git
synced 2025-12-28 12:52:47 -08:00
By rearranging the `[all[]]` operator we are able to ensure that shadow tiddlers get processed before ordinary tiddlers. This makes it easier to create custom stylesheets that override the core.
38 lines
No EOL
732 B
Text
38 lines
No EOL
732 B
Text
title: $:/core/ui/PageTemplate/sidebar
|
|
tags: $:/tags/PageTemplate
|
|
|
|
<$scrollable fallthrough="no" class="tw-sidebar-scrollable">
|
|
|
|
<div class="sidebar-header">
|
|
|
|
<$reveal state="$:/state/sidebar" type="match" text="yes" default="yes" retain="yes">
|
|
|
|
<div class="tw-site-title">
|
|
|
|
<$transclude tiddler="$:/SiteTitle" mode="inline"/>
|
|
|
|
</div>
|
|
|
|
<div class="tw-site-subtitle">
|
|
|
|
<$transclude tiddler="$:/SiteSubtitle" mode="inline"/>
|
|
|
|
</div>
|
|
|
|
<div class="tw-page-controls">
|
|
|
|
<$list filter="[all[shadows+tiddlers]tag[$:/tags/PageControls]!has[draft.of]]" variable="listItem">
|
|
|
|
<$transclude tiddler=<<listItem>> mode="inline"/>
|
|
|
|
</$list>
|
|
|
|
</div>
|
|
|
|
<$transclude tiddler="$:/core/ui/SideBarLists" mode="inline"/>
|
|
|
|
</$reveal>
|
|
|
|
</div>
|
|
|
|
</$scrollable> |