1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-18 11:29:55 +00:00

Blog updates

This commit is contained in:
Jermolene 2015-10-01 12:13:48 +01:00
parent 99df9f46f7
commit c0c0b6653c
4 changed files with 49 additions and 2 deletions

View File

@ -22,7 +22,7 @@ title: $:/plugins/tiddlywiki/blog/templates/html-page/page
`{{$:/StaticBanner||$:/core/templates/html-tiddler}}`
<section class="tc-story-river">
`<$importvariables filter="[[$:/core/ui/PageMacros]] [all[shadows+tiddlers]tag[$:/tags/Macro]!has[draft.of]]">
<$view tiddler="$:/core/ui/ViewTemplate" format="htmlwikified"/>
<$view tiddler="$:/plugins/tiddlywiki/blog/templates/tiddler" format="htmlwikified"/>
</$importvariables>`
</section>
</body>

View File

@ -22,7 +22,8 @@ title: $:/plugins/tiddlywiki/blog/templates/html-page/post
`{{$:/StaticBanner||$:/core/templates/html-tiddler}}`
<section class="tc-story-river">
`<$importvariables filter="[[$:/core/ui/PageMacros]] [all[shadows+tiddlers]tag[$:/tags/Macro]!has[draft.of]]">
<$view tiddler="$:/core/ui/ViewTemplate" format="htmlwikified"/>
<$view tiddler="$:/plugins/tiddlywiki/blog/templates/tiddler" format="htmlwikified"/>
<$view tiddler="$:/plugins/tiddlywiki/blog/templates/menu" format="htmlwikified"/>
</$importvariables>`
</section>
</body>

View File

@ -0,0 +1,11 @@
title: $:/plugins/tiddlywiki/blog/templates/menu
<div>
<a href="../index.html">
{{$:/core/images/home-button}}
</a>
</div>

View File

@ -0,0 +1,35 @@
title: $:/plugins/tiddlywiki/blog/templates/tiddler
<div class="tc-tiddler-frame tc-tiddler-view-frame">
<div class="tc-tiddler-title">
<div class="tc-titlebar">
<h2 class="tc-title">
<$transclude field="caption" mode="inline">
<$view field="title"/>
</$transclude>
</h2>
</div>
</div>
<div class="tc-subtitle">
<$view field="modified" format="date" template="DDth MMM YYYY"/>
</div>
<div class="tc-tiddler-body">
<$transclude/>
</div>
</div>