mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-19 16:24:51 +00:00
28b0b58a11
Templates are the low-level bits and pieces that allow TW5 to generate HTML and CSS renderings of tiddlers. The UI folder contains the user-visible UI of TW5
30 lines
726 B
Plaintext
30 lines
726 B
Plaintext
title: $:/core/ui/PageTemplate
|
|
|
|
<!-- The navigator catches navigation events and updates the story and history tiddlers -->
|
|
<$navigator story="$:/StoryList" history="$:/HistoryList">
|
|
|
|
<$import browse="no" class="tw-drop-zone-fullscreen">
|
|
|
|
<!-- The sidebar header -->
|
|
<header class="sidebar-header">
|
|
|
|
{{SiteTitle}}.title <br><small>{{SiteSubtitle}}</small>
|
|
|
|
{{$:/core/ui/SideBar}}
|
|
|
|
</header>
|
|
|
|
<!-- The story river -->
|
|
<section class="story-river">
|
|
|
|
<!-- The main story -->
|
|
<$list filter="[list[$:/StoryList]]" history="$:/HistoryList" template="$:/core/ui/ViewTemplate" editTemplate="$:/core/ui/EditTemplate" listview="classic" itemClass="tw-tiddler-frame"/>
|
|
|
|
<!-- End of story river -->
|
|
</section>
|
|
|
|
</$import>
|
|
|
|
</$navigator>
|
|
|