1<?php
2/**
3 * DokuWiki Apricot Template
4 *
5 * @link   http://dokuwiki.org/template:apricot
6 * @author Arun Chaganty <arunchaganty@gmail.com>
7 * @author Andreas Gohr <andi@splitbrain.org>
8 * @author Anika Henke <anika@selfthinker.org>
9 */
10
11if (!defined('DOKU_INC')) die(); /* must be run from within DokuWiki */
12@require_once(dirname(__FILE__).'/tpl_functions.php'); /* include hook for template functions */
13$sidebarID = tpl_getConf('sidebarID');
14?>
15
16<ul id="sidebar">
17  <ul>
18    <li id="search" class="widget widget_search">
19      <?php tpl_searchform() ?>
20    </li>
21    <?php
22        tpl_action('recent', 1, 'li');
23        tpl_action('index', 1, 'li');
24    ?>
25  </ul>
26<li>
27  <h2>Navigation</h2>
28  <?php tpl_include_page($sidebarID); /* includes the given wiki page */ ?>
29</li>
30</ul>
31<div class="clearer"></div>
32
33