mirror of
https://github.com/wallabag/wallabag.git
synced 2024-10-31 22:28:54 +00:00
16 lines
No EOL
400 B
PHP
16 lines
No EOL
400 B
PHP
<?php
|
|
/**
|
|
* poche, a read it later open source system
|
|
*
|
|
* @category poche
|
|
* @author Nicolas Lœuillet <support@inthepoche.com>
|
|
* @copyright 2013
|
|
* @license http://www.wtfpl.net/ see COPYING file
|
|
*/
|
|
|
|
include dirname(__FILE__).'/inc/config.php';
|
|
|
|
$entries = display_view($view);
|
|
$tpl->assign('token', $_SESSION['token_poche']);
|
|
$tpl->assign('entries', $entries);
|
|
$tpl->draw('entries'); |