aboutsummaryrefslogtreecommitdiffhomepage
path: root/tpl/entries.html
blob: 83e58c7417135bbe8e7f2115d0e55bef9172f7dc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
            <div id="content">
                {loop="entries"}
                    <div id="entry-{$value.id}" class="entrie mb2">
                        <span class="content">
                            <h2 class="h6-like">
                                <a href="index.php?&view=view&id={$value.id}">{$value.title}</a>
                            </h2>
                            <div class="tools">
                                <ul>
                                    <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>
                                        <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>
                                        <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>
                                </ul>
                            </div>
                            <div class="url">{$value.url}</div>
                        </span>
                    </div>
                {/loop}
            </div>