1<?php
2
3if(!defined('DOKU_INC')) define('DOKU_INC',dirname(__FILE__).'/../../../../');
4require_once(DOKU_INC . 'inc/init.php');
5if(!defined('DOKU_TPL')) define('DOKU_TPL', tpl_basedir());
6
7$helper = plugin_load('helper', 'linkscollection');
8global $conf;
9
10?>
11<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
12 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
13<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $conf['lang']?>" lang="<?php echo $conf['lang']?>" dir="ltr">
14    <head>
15        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
16        <title><?php $helper->getLang('title'); ?></title>
17        <?php tpl_metaheaders()?>
18        <link rel="shortcut icon" href="<?php echo DOKU_TPL?>images/favicon.ico" />
19    </head>
20    <body>
21        <div class="dokuwiki">
22            <?php echo $helper->locale_xhtml('intro'); ?>
23            <div id="plugin_linkscollection__wrapper">
24                <?php echo $helper->getSitemap(); ?>
25                <button type="submit" id="plugin_linkscollection__insert"><?php echo $helper->getLang('button'); ?></button>
26            </div>
27        </div>
28    </body>
29</html>
30