mirror of
https://github.com/wallabag/wallabag.git
synced 2024-10-31 22:28:54 +00:00
31 lines
1.7 KiB
HTML
Executable file
31 lines
1.7 KiB
HTML
Executable file
{include="head"}
|
|
<body class="article">
|
|
<div id="article" class="w600p">
|
|
<div class="backhome">
|
|
<a href="index.php" title="back to home">←</a>
|
|
</div>
|
|
<div class="tools">
|
|
<ul>
|
|
<li><a title="toggle mark as read" class="tool archive {if="$is_read == '0'"}archive-off{/if}" onclick="toggle_archive(this, {$id}, '{$token}')"><span></span></a></li>
|
|
<li><a title="toggle favorite" class="tool fav {if="$is_fav == '0'"}fav-off{/if}" onclick="toggle_favorite(this, {$id}, '{$token}')"><span></span></a></li>
|
|
<li><form method="post" onsubmit="return confirm('Are you sure?')" style="display: inline;"><input type="hidden" name="token" id="token" value="{$token}" /><input type="hidden" id="action" name="action" value="delete" /><input type="hidden" id="id" name="id" value="{$id}" /><input type="submit" class="delete" title="toggle delete" /></form></li>
|
|
</ul>
|
|
</div>
|
|
<header class="mbm">
|
|
<h1><a href="{$url}">{$title}</a></h1>
|
|
<div class="vieworiginal txtright small"><a href="{$url}" target="_blank" title="original : {$title}">view original</a></div>
|
|
</header>
|
|
<article>
|
|
<div id="readityourselfcontent">
|
|
{$content}
|
|
</div>
|
|
</article>
|
|
<div class="vieworiginal txtright small"><a href="{$url}" target="_blank" title="original : {$title}">view original</a></div>
|
|
<div class="backhome">
|
|
<a href="index.php" title="back to home">←</a>
|
|
</div>
|
|
</div>
|
|
{include="footer"}
|
|
{include="js"}
|
|
</body>
|
|
</html>
|