1<?php
2/**
3 * DokuWiki Default Template 2012
4 *
5 * @link     http://dokuwiki.org/template
6 * @author   Anika Henke <anika@selfthinker.org>
7 * @author   Clarence Lee <clarencedglee@gmail.com>
8 * @license  GPL 2 (http://www.gnu.org/licenses/gpl.html)
9 */
10
11if (!defined('DOKU_INC')) die(); /* must be run from within DokuWiki */
12header('X-UA-Compatible: IE=edge,chrome=1');
13
14$hasSidebar = page_findnearest($conf['sidebar']);
15$showSidebar = $hasSidebar && ($ACT=='show');
16?><!DOCTYPE html>
17<html lang="<?php echo $conf['lang'] ?>" dir="<?php echo $lang['direction'] ?>" class="no-js">
18<head>
19    <meta charset="utf-8" />
20    <title><?php tpl_pagetitle() ?> [<?php echo strip_tags($conf['title']) ?>]</title>
21    <script>(function(H){H.className=H.className.replace(/\bno-js\b/,'js')})(document.documentElement)</script>
22    <?php tpl_metaheaders() ?>
23    <meta name="viewport" content="width=device-width,initial-scale=1" />
24    <?php echo tpl_favicon(array('favicon', 'mobile')) ?>
25    <?php tpl_includeFile('meta.html') ?>
26</head>
27
28<body>
29    <div id="dokuwiki__site"><div id="dokuwiki__top" class="site <?php echo tpl_classes(); ?> <?php
30        echo ($showSidebar) ? 'showSidebar' : ''; ?> <?php echo ($hasSidebar) ? 'hasSidebar' : ''; ?>">
31
32        <?php include('tpl_header.php') ?>
33
34        <div class="wrapper group">
35
36            <?php if($showSidebar): ?>
37                <!-- ********** ASIDE ********** -->
38                <div id="dokuwiki__aside"><div class="pad aside include group">
39                    <h3 class="toggle"><?php echo $lang['sidebar'] ?></h3>
40                    <div class="content"><div class="group">
41                        <?php tpl_flush() ?>
42                        <?php tpl_includeFile('sidebarheader.html') ?>
43                        <?php tpl_include_page($conf['sidebar'], true, true) ?>
44                        <?php tpl_includeFile('sidebarfooter.html') ?>
45                    </div></div>
46                </div></div><!-- /aside -->
47            <?php endif; ?>
48
49            <!-- ********** CONTENT ********** -->
50            <div id="dokuwiki__content"><div class="pad group">
51                <?php html_msgarea() ?>
52
53                <div class="pageId"><span><?php echo hsc($ID) ?></span></div>
54
55                <div class="page group">
56                    <?php tpl_flush() ?>
57                    <?php tpl_includeFile('pageheader.html') ?>
58                    <!-- wikipage start -->
59                    <?php tpl_content() ?>
60                    <!-- wikipage stop -->
61                    <?php tpl_includeFile('pagefooter.html') ?>
62                </div>
63
64                <div class="docInfo"><?php tpl_pageinfo() ?></div>
65
66                <?php tpl_flush() ?>
67            </div></div><!-- /content -->
68
69            <hr class="a11y" />
70
71            <!-- PAGE ACTIONS -->
72            <div id="dokuwiki__pagetools">
73                <h3 class="a11y"><?php echo $lang['page_tools']; ?></h3>
74                <div class="tools">
75                    <ul>
76                        <?php
77                            $data = array(
78                                'view'  => 'main',
79                                'items' => array(
80                                    'edit'      => tpl_action('edit',      true, 'li', true, '<span>', '</span>'),
81                                    'revert'    => tpl_action('revert',    true, 'li', true, '<span>', '</span>'),
82                                    'revisions' => tpl_action('revisions', true, 'li', true, '<span>', '</span>'),
83                                    'backlink'  => tpl_action('backlink',  true, 'li', true, '<span>', '</span>'),
84                                    'subscribe' => tpl_action('subscribe', true, 'li', true, '<span>', '</span>'),
85                                    'top'       => tpl_action('top',       true, 'li', true, '<span>', '</span>')
86                                )
87                            );
88
89                            // the page tools can be amended through a custom plugin hook
90                            $evt = new Doku_Event('TEMPLATE_PAGETOOLS_DISPLAY', $data);
91                            if($evt->advise_before()){
92                                foreach($evt->data['items'] as $k => $html) echo $html;
93                            }
94                            $evt->advise_after();
95                            unset($data);
96                            unset($evt);
97                        ?>
98                    </ul>
99                </div>
100            </div>
101        </div><!-- /wrapper -->
102
103        <?php include('tpl_footer.php') ?>
104    </div></div><!-- /site -->
105
106    <div class="no"><?php tpl_indexerWebBug() /* provide DokuWiki housekeeping, required in all templates */ ?></div>
107    <div id="screen__mode" class="no"></div><?php /* helper to detect CSS media query in script.js */ ?>
108</body>
109</html>
110