1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-06 04:03:16 +00:00
TiddlyWiki5/core/templates/PageTemplate.tid

34 lines
988 B
Plaintext
Raw Normal View History

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">
2013-02-04 20:47:21 +00:00
{{SiteTitle}}.title <br><small>{{SiteSubtitle}}</small>
2013-02-06 11:27:09 +00:00
<$list filter="[list[$:/StoryList]]" history="$:/HistoryList" itemClass="tw-menu-list-item"/>
2013-02-04 11:56:23 +00:00
<div class="edit-controls">
2013-02-04 15:29:25 +00:00
<$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>
2013-02-04 11:56:23 +00:00
</div>
</header>
2013-02-04 11:56:23 +00:00
<!-- The story river -->
<section class="story-river">
<!-- The main story -->
2013-02-06 11:27:09 +00:00
<$list filter="[list[$:/StoryList]]" history="$:/HistoryList" template="$:/templates/ViewTemplate" editTemplate="$:/templates/EditTemplate" listview="classic" itemClass="tw-tiddler-frame"/>
<!-- Config area -->
{{$:/snippets/encryptionstatus}}
<!-- End of story river -->
</section>
</$navigator>