2012-06-01 19:04:51 +00:00
|
|
|
title: $:/templates/PageTemplate
|
2012-04-30 11:23:03 +00:00
|
|
|
|
2012-08-02 21:06:52 +00:00
|
|
|
<!-- The navigator catches navigation events and updates the story and history tiddlers -->
|
2012-12-30 13:55:19 +00:00
|
|
|
<$navigator story="$:/StoryList" history="$:/HistoryList">
|
2012-06-26 18:54:51 +00:00
|
|
|
|
2012-08-02 21:06:52 +00:00
|
|
|
<!-- The top navigation bar -->
|
2012-06-10 21:02:16 +00:00
|
|
|
<div class="navbar navbar-fixed-top">
|
|
|
|
<div class="navbar-inner">
|
|
|
|
<div class="container">
|
2012-08-02 21:06:52 +00:00
|
|
|
<!-- Navigation menu -->
|
2012-12-28 22:08:32 +00:00
|
|
|
@@.nav
|
2012-06-10 21:02:16 +00:00
|
|
|
* HelloThere
|
|
|
|
* [[Docs]]
|
2012-11-29 17:23:46 +00:00
|
|
|
*.divider-vertical
|
2012-12-28 22:08:32 +00:00
|
|
|
@@
|
2012-06-10 21:02:16 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2012-06-26 18:54:51 +00:00
|
|
|
|
2012-12-28 22:08:32 +00:00
|
|
|
<!-- The main display container -->
|
2012-06-26 18:54:51 +00:00
|
|
|
<div class="container">
|
2012-11-03 12:33:56 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="span2">
|
|
|
|
<div style="position:fixed;">
|
2012-12-28 22:08:32 +00:00
|
|
|
<!-- The navigation menu -->
|
2012-12-30 13:55:19 +00:00
|
|
|
<$list filter="[list[$:/StoryList]]" history="$:/HistoryList" editTemplate="$:/templates/EditTemplate" listview=classic itemClass="tw-menu-list-item"/>
|
2012-11-03 12:33:56 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="span10">
|
2012-12-28 22:08:32 +00:00
|
|
|
<!-- The main display -->
|
2012-12-30 13:55:19 +00:00
|
|
|
<$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>
|
2012-06-26 18:54:51 +00:00
|
|
|
|
2012-12-30 13:55:19 +00:00
|
|
|
</$navigator>
|
2012-06-26 18:54:51 +00:00
|
|
|
|