diff options
-rwxr-xr-x | tpl/index.html | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/tpl/index.html b/tpl/index.html deleted file mode 100755 index 1c6c83b9..00000000 --- a/tpl/index.html +++ /dev/null | |||
@@ -1,41 +0,0 @@ | |||
1 | <!DOCTYPE html> | ||
2 | <!--[if lte IE 6]> <html class="no-js ie6 ie67 ie678" lang="en"> <![endif]--> | ||
3 | <!--[if lte IE 7]> <html class="no-js ie7 ie67 ie678" lang="en"> <![endif]--> | ||
4 | <!--[if IE 8]> <html class="no-js ie8 ie678" lang="en"> <![endif]--> | ||
5 | <!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]--> | ||
6 | <html> | ||
7 | <head> | ||
8 | <meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0"> | ||
9 | <meta charset="utf-8"> | ||
10 | <meta http-equiv="X-UA-Compatible" content="IE=10"> | ||
11 | <link rel="stylesheet" href="./css/knacss.css" media="all"> | ||
12 | <link rel="stylesheet" href="./css/style.css" media="all"> | ||
13 | <title>{$title}</title> | ||
14 | </head> | ||
15 | <body class="article"> | ||
16 | <div id="article" class="w600p"> | ||
17 | <div class="backhome"> | ||
18 | <a href="index.php" title="back to home">←</a> | ||
19 | </div> | ||
20 | <div class="tools"> | ||
21 | <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> | ||
22 | <a title="toggle favorite" class="tool fav {if="$is_fav == 0"}fav-off{/if}" onclick="toggle_favorite(this, {$id})"><span></span></a> | ||
23 | <a href="index.php?action=delete&id={$id}" title="toggle delete" onclick="return confirm('Are you sure?')" class="tool delete"><span></span></a> | ||
24 | </div> | ||
25 | <header class="mbm"> | ||
26 | <h1><a href="{$url}">{$title}</a></h1> | ||
27 | <div class="vieworiginal txtright small"><a href="{$url}" target="_blank" title="original : {$title}">view original</a></div> | ||
28 | </header> | ||
29 | <article> | ||
30 | <div id="readityourselfcontent"> | ||
31 | {$content} | ||
32 | </div> | ||
33 | </article> | ||
34 | <div class="vieworiginal txtright small"><a href="{$url}" target="_blank" title="original : {$title}">view original</a></div> | ||
35 | <div class="backhome"> | ||
36 | <a href="index.php" title="back to home">←</a> | ||
37 | </div> | ||
38 | </div> | ||
39 | {include="footer"} | ||
40 | </body> | ||
41 | </html> | ||