diff options
Diffstat (limited to 'tpl/view.html')
-rwxr-xr-x | tpl/view.html | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/tpl/view.html b/tpl/view.html new file mode 100755 index 00000000..1e057889 --- /dev/null +++ b/tpl/view.html | |||
@@ -0,0 +1,29 @@ | |||
1 | {include="head"} | ||
2 | <body class="article"> | ||
3 | <div id="article" class="w600p"> | ||
4 | <div class="backhome"> | ||
5 | <a href="index.php" title="back to home">←</a> | ||
6 | </div> | ||
7 | <div class="tools"> | ||
8 | <a title="toggle mark as read" class="tool archive {if="$is_read == 0"}archive-off{/if}" onclick="toggle_archive(this, {$id}, 1)"><span></span></a> | ||
9 | <a title="toggle favorite" class="tool fav {if="$is_fav == 0"}fav-off{/if}" onclick="toggle_favorite(this, {$id})"><span></span></a> | ||
10 | <a href="index.php?action=delete&id={$id}" title="toggle delete" onclick="return confirm('Are you sure?')" class="tool delete"><span></span></a> | ||
11 | </div> | ||
12 | <header class="mbm"> | ||
13 | <h1><a href="{$url}">{$title}</a></h1> | ||
14 | <div class="vieworiginal txtright small"><a href="{$url}" target="_blank" title="original : {$title}">view original</a></div> | ||
15 | </header> | ||
16 | <article> | ||
17 | <div id="readityourselfcontent"> | ||
18 | {$content} | ||
19 | </div> | ||
20 | </article> | ||
21 | <div class="vieworiginal txtright small"><a href="{$url}" target="_blank" title="original : {$title}">view original</a></div> | ||
22 | <div class="backhome"> | ||
23 | <a href="index.php" title="back to home">←</a> | ||
24 | </div> | ||
25 | </div> | ||
26 | {include="footer"} | ||
27 | {include="js"} | ||
28 | </body> | ||
29 | </html> | ||