mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-05 01:26:18 +00:00
34 lines
1006 B
Plaintext
34 lines
1006 B
Plaintext
title: $:/templates/PageTemplate
|
|
|
|
<!-- The navigator catches navigation events and updates the story and history tiddlers -->
|
|
<$navigator story="$:/StoryList" history="$:/HistoryList">
|
|
|
|
<!-- The sidebar header -->
|
|
<header class="sidebar-header">
|
|
|
|
{{SiteTitle}}.title <br><small>{{SiteSubtitle}}</small>
|
|
|
|
<$list filter="[list[$:/StoryList]]" history="$:/HistoryList" listview=classic itemClass="tw-menu-list-item"/>
|
|
|
|
<div class="edit-controls">
|
|
<$button message="tw-new-tiddler" class="btn btn-mini btn-success">New</$button>
|
|
<$button message="tw-save-wiki" class="btn btn-mini btn-primary">Save</$button>
|
|
</div>
|
|
|
|
</header>
|
|
|
|
<!-- The story river -->
|
|
<section class="story-river">
|
|
|
|
<!-- The main story -->
|
|
<$list filter="[list[$:/StoryList]]" history="$:/HistoryList" template="$:/templates/ViewTemplate" editTemplate="$:/templates/EditTemplate" listview="scroller" itemClass="tw-tiddler-frame"/>
|
|
|
|
<!-- Config area -->
|
|
{{$:/snippets/encryptionstatus}}
|
|
|
|
<!-- End of story river -->
|
|
</section>
|
|
|
|
</$navigator>
|
|
|