]> git.immae.eu Git - github/wallabag/wallabag.git/blame - index.php
lors de l'import, les liens déjà lus dans Pocket étaient repris en tant que non lus...
[github/wallabag/wallabag.git] / index.php
CommitLineData
1a268ba7
NL
1<?php
2/**
3 * poche, a read it later open source system
4 *
5 * @category poche
421b65eb 6 * @author Nicolas Lœuillet <support@inthepoche.com>
1a268ba7
NL
7 * @copyright 2013
8 * @license http://www.wtfpl.net/ see COPYING file
9 */
10
c594aedf 11include dirname(__FILE__).'/inc/config.php';
1a268ba7 12
9fee2e72 13$entries = display_view($view);
5917f419 14
8046748b 15$tpl->assign('title', 'poche, a read it later open source system');
9fee2e72 16$tpl->assign('view', $view);
8046748b 17$tpl->assign('poche_url', get_poche_url());
18$tpl->assign('entries', $entries);
19$tpl->assign('load_all_js', 1);
cf3180f6 20$tpl->assign('token', $_SESSION['token_poche']);
139769aa 21
22$tpl->draw('head');
23$tpl->draw('home');
24$tpl->draw('entries');
25$tpl->draw('js');
1c182b6c 26$tpl->draw('footer');