1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-02 18:23:28 +00:00
TiddlyWiki5/core/templates/PageTemplate.tid

34 lines
1019 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 page header -->
<div class="pull-right">
2013-01-17 11:38:02 +00:00
<$button class="btn btn-mini btn-primary">Edit</$button>
<$button message="tw-NewTiddler" class="btn btn-mini btn-success">New</$button>
2012-06-10 21:02:16 +00:00
</div>
<div class="page-header">
! {{SiteTitle}} <small>{{SiteSubtitle}}</small>
2012-06-10 21:02:16 +00:00
</div>
<!-- The main display container -->
<div class="container">
2012-11-03 12:33:56 +00:00
<div class="row">
<div class="span2">
<div style="position:fixed;">
<!-- The navigation menu -->
2013-01-17 11:30:35 +00:00
<$list filter="[list[$:/StoryList]]" history="$:/HistoryList" listview=classic itemClass="tw-menu-list-item"/>
2012-11-03 12:33:56 +00:00
</div>
</div>
<div class="span10">
<!-- The main display -->
<$list filter="[list[$:/StoryList]]" history="$:/HistoryList" template="$:/templates/ViewTemplate" editTemplate="$:/templates/EditTemplate" listview=classic itemClass="tw-tiddler-frame"/>
2012-11-03 12:33:56 +00:00
</div>
</div>
2012-06-10 21:02:16 +00:00
</div>
</$navigator>