1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-09-27 22:58:19 +00:00
TiddlyWiki5/core/ui/PageTemplate.tid

40 lines
1020 B
Plaintext
Raw Normal View History

title: $:/core/ui/PageTemplate
<!-- The navigator catches navigation events and updates the story and history tiddlers -->
<$navigator story="$:/StoryList" history="$:/HistoryList">
2013-10-25 20:16:53 +00:00
<$dropzone>
<!-- The optional topbar -->
{{$:/TopSideBar}}
<!-- The optional leftsidebar -->
{{$:/LeftSideBar}}
<!-- The sidebar header -->
2013-11-19 12:17:16 +00:00
<header class="sidebar-header">
<div class="titlebar">{{SiteTitle}}</div>
<div class="tw-subtitle">{{SiteSubtitle}}</div>
<div class="tw-page-controls">
2013-11-17 21:53:39 +00:00
<$list filter="[is[shadow]!has[draft.of]tag[$:/tags/PageControls]] [!is[shadow]!has[draft.of]tag[$:/tags/PageControls]]" variable="listItem"><$transclude tiddler=<<listItem>>/></$list>
</div>
{{$:/core/ui/SideBar}}
2013-02-04 11:56:23 +00:00
</header>
2013-02-04 11:56:23 +00:00
<!-- The story river -->
<section class="story-river">
<!-- The main story -->
<$list filter="[list[$:/StoryList]]" history="$:/HistoryList" template="$:/core/ui/ViewTemplate" editTemplate="$:/core/ui/EditTemplate" storyview={{$:/view}} />
<!-- End of story river -->
</section>
2013-10-25 20:16:53 +00:00
</$dropzone>
</$navigator>