123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- <?php
- /**
- * admin: A very limited theme with almost no features, to maximize screen real estate
- *
- * @version $Id: page.tpl.php,v 1.1 2007-08-20 19:43:07 marand Exp $
- * @copyright 2006-2007 OSI
- * @license CeCILL 2.0
- */
- ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml" lang="<?php print $language ?>" xml:lang="<?php print $language ?>">
- <head>
- <title><?php print $head_title ?></title>
- <meta http-equiv="Content-Style-Type" content="text/css" />
- <?php print $head ?>
- <?php print $styles ?>
- </head>
- <body <?php print theme("onload_attribute"); ?>>
- <div id="header" class="clear-block">
- <?php print $search_box ?>
- <?php if ($logo) : ?>
- <a href="<?php print url() ?>" title="Index Page"><img src="<?php print($logo) ?>" alt="Logo" /></a>
- <?php endif; ?>
- <?php if ($site_name) : ?>
- <h1 id="site-name"><a href="<?php print url() ?>" title="Index Page"><?php print($site_name) ?></a></h1>
- <?php endif;?>
- <?php if ($site_slogan) : ?>
- <span id="site-slogan"><?php print($site_slogan) ?></span>
- <?php endif;?>
- <?php print $header ?>
- <?php if ($top_menu) { ?>
- <div id="top_menu" class="clear-block">
- <?php print $top_menu ; ?>
- </div>
- <?php } ?>
- </div>
- <div id="top-nav">
- <?php if (count($secondary_links)) : ?>
- <ul id="secondary">
- <?php foreach ($secondary_links as $link): ?>
- <li><?php print $link?></li>
- <?php endforeach; ?>
- </ul>
- <?php endif; ?>
- <?php if (count($primary_links)) : /* changement en D5 ? */ ?>
- <ul id="primary">
- <?php foreach ($primary_links as $link): ?>
- <li><?php print $link?></li>
- <?php endforeach; ?>
- </ul>
- <?php endif; ?>
- </div>
- <table id="content">
- <tr>
- <?php if ($sidebar_left != ""): ?>
- <td class="sidebar" id="sidebar-left">
- <?php print $sidebar_left ?>
- </td>
- <?php endif; ?>
- <td class="main-content" id="content-<?php print $layout ?>">
- <?php if ($title != ""): ?>
- <h2 class="content-title"><?php print $title ?></h2>
- <?php endif; ?>
- <?php if ($tabs != ""): ?>
- <?php print $tabs ?>
- <?php endif; ?>
- <?php if ($mission != ""): ?>
- <div id="mission"><?php print $mission ?></div>
- <?php endif; ?>
- <?php if ($help != ""): ?>
- <p id="help"><?php print $help ?></p>
- <?php endif; ?>
- <?php if ($messages != ""): ?>
- <div id="message"><?php print $messages ?></div>
- <?php endif; ?>
- <!-- start main content -->
- <?php print($content) ?>
- <!-- end main content -->
- </td><!-- mainContent -->
- <?php if ($sidebar_right != ""): ?>
- <td class="sidebar" id="sidebar-right">
- <?php print $sidebar_right ?>
- </td>
- <?php endif; ?>
- </tr>
- </table>
- <?php print $breadcrumb ?>
- <div id="footer">
- <?php if ($footer_message) : ?>
- <p><?php print $footer_message;?></p>
- <?php endif; ?>
- Validate <a href="http://validator.w3.org/check/referer">XHTML</a> or <a href="http://jigsaw.w3.org/css-validator/check/referer">CSS</a>.
- </div><!-- footer -->
- <?php print $closure;?>
- </body>
- </html>
|