]> git.immae.eu Git - github/wallabag/wallabag.git/blob - index.php
Fixed #53 - on ne passait pas d'id pour la création du répertoire d'images lors de...
[github/wallabag/wallabag.git] / index.php
1 <?php
2 /**
3 * poche, a read it later open source system
4 *
5 * @category poche
6 * @author Nicolas Lœuillet <support@inthepoche.com>
7 * @copyright 2013
8 * @license http://www.wtfpl.net/ see COPYING file
9 */
10
11 include dirname(__FILE__).'/inc/config.php';
12
13 $entries = display_view($view);
14
15 $tpl->assign('title', 'poche, a read it later open source system');
16 $tpl->assign('view', $view);
17 $tpl->assign('poche_url', get_poche_url());
18 $tpl->assign('entries', $entries);
19 $tpl->assign('load_all_js', 1);
20 $tpl->assign('token', $_SESSION['token_poche']);
21
22 $tpl->draw('head');
23 $tpl->draw('home');
24 $tpl->draw('entries');
25 $tpl->draw('js');
26 $tpl->draw('footer');