AC_4897, AC_4898, AC_4899: Multifile uploader fixes.
[acontent.git] / docs / themes / default / include / handbook_header.tmpl.php
1 <?php
2 /************************************************************************/
3 /* AContent                                                             */
4 /************************************************************************/
5 /* Copyright (c) 2010                                                   */
6 /* Inclusive Design Institute                                           */
7 /*                                                                      */
8 /* This program is free software. You can redistribute it and/or        */
9 /* modify it under the terms of the GNU General Public License          */
10 /* as published by the Free Software Foundation.                        */
11 /************************************************************************/
12
13 ?>
14 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict //EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
15 <html lang="<?php echo DEFAULT_LANGUAGE_CODE; ?>">
16 <head>
17         <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
18         <title><?php _AT('transformable_documentation'); ?></title>
19         <link rel="stylesheet" href="<?php echo $this->base_path.'themes/'.$this->theme; ?>/handbook_styles.css" type="text/css" />
20 </head>
21
22 <body onload="doparent();">
23 <script type="text/javascript">
24 // <!--
25 function doparent() {
26         if (parent.toc && parent.toc.highlight) parent.toc.highlight('id<?php echo $this->this_page; ?>');
27 }
28 // -->
29 </script>
30
31 <div class="seq">
32         <?php if (isset($this->prev_page)): ?>
33                 <?php echo _AT('previous_chapter'); ?>: <a href="frame_content.php?p=<?php echo $this->prev_page; ?>" accesskey="," title="<?php echo _AT($this->pages[$this->prev_page]['title_var']); ?> Alt+,"><?php echo _AT($this->pages[$this->prev_page]['title_var']); ?></a><br />
34         <?php endif; ?>
35
36         <?php if (isset($this->next_page)): ?>
37                 <?php echo _AT('next_chapter'); ?>: <a href="frame_content.php?p=<?php echo $this->next_page; ?>" accesskey="," title="<?php echo _AT($this->pages[$this->next_page]['title_var']); ?> Alt+,"><?php echo _AT($this->pages[$this->next_page]['title_var']); ?></a><br />
38         <?php endif; ?>
39 </div>