diff options
author | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2013-08-08 09:36:10 -0700 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2013-08-08 09:36:10 -0700 |
commit | 9a8b4ff4edf84d7df60de1b6fd1e493b59f88273 (patch) | |
tree | 3c8ab8086fd8a2750270f8aeaee1f1ce016167cb /tpl/entries.html | |
parent | 85ebc80c7eaf88e4d57a52adb8e4c32d8cc34b64 (diff) | |
parent | 572e758bf2e76308a3fa3eda9a8d9e9be8b53ecc (diff) | |
download | wallabag-9a8b4ff4edf84d7df60de1b6fd1e493b59f88273.tar.gz wallabag-9a8b4ff4edf84d7df60de1b6fd1e493b59f88273.tar.zst wallabag-9a8b4ff4edf84d7df60de1b6fd1e493b59f88273.zip |
Merge pull request #109 from inthepoche/dev
merge dev into master
Diffstat (limited to 'tpl/entries.html')
-rw-r--r-- | tpl/entries.html | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/tpl/entries.html b/tpl/entries.html deleted file mode 100644 index 8526a3c9..00000000 --- a/tpl/entries.html +++ /dev/null | |||
@@ -1,18 +0,0 @@ | |||
1 | <div id="content"> | ||
2 | {loop="entries"} | ||
3 | <div id="entry-{$value.id}" class="entrie mb2"> | ||
4 | <span class="content"> | ||
5 | <h2 class="h6-like"> | ||
6 | <a href="index.php?&view=view&id={$value.id}">{$value.title}</a> | ||
7 | </h2> | ||
8 | <div class="tools"> | ||
9 | <ul> | ||
10 | <li><a title="toggle mark as read" class="tool archive {if="$value.is_read == '0'"}archive-off{/if}" onclick="toggle_archive(this, {$value.id})"><span></span></a></li> | ||
11 | <li><a title="toggle favorite" class="tool fav {if="$value.is_fav == '0'"}fav-off{/if}" onclick="toggle_favorite(this, {$value.id})"><span></span></a></li> | ||
12 | <li><form method="post" onsubmit="return confirm('Are you sure?')" style="display: inline;"><input type="hidden" name="token" id="token" value="<?php echo Session::getToken(); ?>" /><input type="hidden" id="action" name="action" value="delete" /><input type="hidden" id="view" name="view" value="{$view}" /><input type="hidden" id="id" name="id" value="{$value.id}" /><input type="submit" class="delete" title="toggle delete" /></form></li> | ||
13 | </ul> | ||
14 | </div> | ||
15 | </span> | ||
16 | </div> | ||
17 | {/loop} | ||
18 | </div> \ No newline at end of file | ||