Changeset 486 for trunk/modules/user_guide/views/user_guide/en/template.php
- Timestamp:
- 09/03/2007 08:49:02 PM (15 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/modules/user_guide/views/user_guide/en/template.php
r479 r486 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict// EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">2 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang=" en" lang="en">1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//<?php echo strtoupper(Config::item('core.locale')) ?>" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 2 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo Config::item('core.locale') ?>" lang="<?php echo Config::item('core.locale') ?>"> 3 3 <head> 4 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> 5 5 6 <title> Kohana User Guide</title>6 <title><?php echo Kohana::lang('user_guide.title') ?></title> 7 7 8 <link type="text/css" rel="stylesheet" href="<?php echo url::base(TRUE) ?>user_guide/css/layout.css" /> 9 <link type="text/css" rel="stylesheet" href="<?php echo url::base(TRUE) ?>user_guide/css/prettify.css" /> 8 <?php 10 9 11 <script type="text/javascript" src="<?php echo url::base(TRUE) ?>user_guide/js/jquery.js"></script> 12 <script type="text/javascript" src="<?php echo url::base(TRUE) ?>user_guide/js/plugins.js"></script> 13 <script type="text/javascript" src="<?php echo url::base(TRUE) ?>user_guide/js/prettify.js"></script> 14 <script type="text/javascript" src="<?php echo url::base(TRUE) ?>user_guide/js/effects.js"></script> 10 echo html::stylesheet(array 11 ( 12 'user_guide/css/layout', 13 'user_guide/css/prettify' 14 ), TRUE) 15 16 ?> 17 18 <?php 19 20 echo html::script(array 21 ( 22 'user_guide/js/jquery', 23 'user_guide/js/plugins', 24 'user_guide/js/prettify', 25 'user_guide/js/effects' 26 ), TRUE) 27 28 ?> 15 29 16 30 </head> … … 18 32 <div id="container"> 19 33 34 <!-- @start Menu --> 20 35 <div id="menu"> 21 <?php echo $menu ?> 36 <ul> 37 <?php 38 39 foreach(Kohana::lang('user_guide.menu') as $category => $menu): 40 41 $active = (strtolower($category) == $active_category) ? ' active' : ''; 42 43 ?> 44 <li class="first<?php echo $active ?>"><span><?php echo $category ?></span><ul> 45 <?php 46 47 foreach($menu as $section): 48 49 $active = (strtolower($section) == $active_section) ? 'lite' : ''; 50 51 ?> 52 <li class="<?php echo $active ?>"><?php echo html::anchor(strtolower('user_guide/'.$category.'/'.$section), $section) ?></li> 53 <?php 54 55 endforeach; 56 57 ?> 58 </ul></li> 59 <?php 60 61 endforeach; 62 63 ?> 64 </ul> 22 65 </div> 23 66 <!-- @end Menu --> 24 67 <!-- @start Body --> 25 68 <div id="body"> … … 27 70 </div> 28 71 <!-- @end Body --> 29 30 72 <!-- @start Footer --> 31 <div id="footer"> 32 <p id="copyright">copyright (c) <?php echo date('Y') ?> Kohana Team :: All rights reserved :: Rendered in {execution_time} seconds using {memory_usage}MB of memory</p> 33 </div> 73 <div id="footer"><p id="copyright"><?php echo sprintf(Kohana::lang('user_guide.copyright'), date('Y')) ?></p></div> 34 74 <!-- @end Footer --> 35 75
