diff options
author | nicosomb <nicolas@loeuillet.org> | 2013-04-12 13:13:21 +0200 |
---|---|---|
committer | nicosomb <nicolas@loeuillet.org> | 2013-04-12 13:13:21 +0200 |
commit | c8bbe19b3fd2ba268c98561690de37fe599ff055 (patch) | |
tree | cb6d9c7c6c1bc973f3569b85a6694cb4d5059d10 /tpl | |
parent | 67e7910439d364f1f7a4dac1d233a7c1055fb933 (diff) | |
download | wallabag-c8bbe19b3fd2ba268c98561690de37fe599ff055.tar.gz wallabag-c8bbe19b3fd2ba268c98561690de37fe599ff055.tar.zst wallabag-c8bbe19b3fd2ba268c98561690de37fe599ff055.zip |
possibilité de mettre en fav ou en archive un article depuis la page article
Diffstat (limited to 'tpl')
-rwxr-xr-x | tpl/footer.html | 2 | ||||
-rwxr-xr-x | tpl/index.html | 5 |
2 files changed, 7 insertions, 0 deletions
diff --git a/tpl/footer.html b/tpl/footer.html index 8cdda21c..ffe4e0d3 100755 --- a/tpl/footer.html +++ b/tpl/footer.html | |||
@@ -1,3 +1,5 @@ | |||
1 | <footer class="mr2 mt3 smaller"> | 1 | <footer class="mr2 mt3 smaller"> |
2 | <p>download poche on <a href="http://github.com/nicosomb/github">github</a><br />follow us on <a href="https://twitter.com/getpoche" title="follow us on twitter">twitter</a></p> | 2 | <p>download poche on <a href="http://github.com/nicosomb/github">github</a><br />follow us on <a href="https://twitter.com/getpoche" title="follow us on twitter">twitter</a></p> |
3 | </footer> | 3 | </footer> |
4 | <script type="text/javascript" src="js/jquery-1.9.1.min.js"></script> | ||
5 | <script type="text/javascript" src="js/poche.js"></script> \ No newline at end of file | ||
diff --git a/tpl/index.html b/tpl/index.html index c8b54c84..1c6c83b9 100755 --- a/tpl/index.html +++ b/tpl/index.html | |||
@@ -17,6 +17,11 @@ | |||
17 | <div class="backhome"> | 17 | <div class="backhome"> |
18 | <a href="index.php" title="back to home">←</a> | 18 | <a href="index.php" title="back to home">←</a> |
19 | </div> | 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> | ||
20 | <header class="mbm"> | 25 | <header class="mbm"> |
21 | <h1><a href="{$url}">{$title}</a></h1> | 26 | <h1><a href="{$url}">{$title}</a></h1> |
22 | <div class="vieworiginal txtright small"><a href="{$url}" target="_blank" title="original : {$title}">view original</a></div> | 27 | <div class="vieworiginal txtright small"><a href="{$url}" target="_blank" title="original : {$title}">view original</a></div> |