CAPRI
images/capri_pic_01.jpg images/capri_pic_02.jpg images/capri_pic_03.jpg

This is an old revision of the document!


wqrwqrqwrqwrqwr<?php /** * DokuWiki DokuCMS Template * * @link http://wiki.splitbrain.org/wiki:tpl:templates * @author Andreas Gohr andi@splitbrain.org * @author Klaus Vormweg klaus.vormweg@gmx.de */

must be run from within DokuWiki if (!defined('DOKU_INC')) die(); include custom template functions stolen from arctic template require_once(dirname(FILE).'/tpl_functions.php');

?> <!DOCTYPE html PUBLIC “-W3CDTD XHTML 1.0 TransitionalEN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”> <html xmlns=“http://www.w3.org/1999/xhtml” xml:lang=“<?php echo $conf['lang']?>” lang=“<?php echo $conf['lang']?>” dir=“<?php echo $lang['direction']?>”> <head> <meta http-equiv=“Content-Type” content=“text/html; charset=utf-8” /> <title> <?php tpl_pagetitle()?> [<?php echo strip_tags($conf['title'])?>] </title> <?php tpl_metaheaders()?> <link rel=“shortcut icon” href=“<?php echo DOKU_TPL?>images/favicon.ico” /> <!–[if lt IE 7]> <style type=“text/css”> div.page { width: 55em !important; } </style> <![endif]–> </head> <body> <div class=“dokuwiki”> <?php html_msgarea()?> <div class=“stylehead”> <div class=“header”> <div class=“pagename”> <?php tpl_link(wl(),$conf['title'],'name=“dokuwikitop” id=“dokuwikitop” accesskey=“h” title=“[ALT+H]”')?> </div> <div class=“clearer”></div> </div> <?php if($conf['breadcrumbs']){?> <div class=“breadcrumbs”> <?php tpl_breadcrumbs()?> </div> <?php }?> </div> <?php tpl_flush()?> <?php if($ACT != 'diff' && $ACT != 'edit' && $ACT != 'preview' && $ACT != 'admin' && $ACT != 'login' && $ACT != 'logout' && $ACT != 'profile' && $ACT != 'revisions') { ?> <div class=“wrap”> <div class=“sidebar”> <?php tpl_sidebar('left'); ?> </div> <div class=“page”> <?php tpl_content(); ?> </div> </div> <?php } else { ?> <div class=“wrap” style=“background-color: #fff;”> <div class=“page” style=“margin-left:0; max-width: 75em;”> <?php tpl_content(); ?> </div> </div> <?php } ?> <?php flush()?> <div class=“stylefoot”> <?php if($ACT != 'diff' && $ACT != 'edit' && $ACT != 'preview' && $ACT != 'admin' && $ACT != 'login' && $ACT != 'logout' && $ACT != 'profile' && $ACT != 'revisions') { ?> <div class=“meta”> <?php dokucms_pageinfo(); ?> </div> <?php } else { ?> <div class=“meta”> </div> <?php } ?> <div class=“bar” id=“barbottom”> <div class=“bar-left” id=“barbottomleft”> <?php tpl_button('admin')?> <?php if($ACT != 'login' && $ACT != 'logout') { ?> <?php tpl_button('login')?>&nbsp; <?php }?> <?php if($_SERVER['REMOTE_USER']){ ?> <?php tpl_button('subscribe')?> <?php tpl_button('profile')?> <?php tpl_button('history')?> <?php tpl_button('revert')?> <?php }?> <?php if($conf['tpl']['dokucms']['showbacklinks']) { ?> <?php tpl_button('backlink')?>&nbsp; <?php } ?> &nbsp; </div> <div class=“bar-right” id=“bar__bottomright”> <?php if(!$_SERVER['REMOTE_USER'] && $ACT != 'login' && $ACT != 'logout') { ?> <?php if(!$conf['tpl']['dokucms']['showsearch']) { ?> <?php tpl_searchform()?>&nbsp; <?php }?> <?php }?> <?php if($conf['tpl']['dokucms']['showsearch']) { ?> <?php tpl_searchform()?>&nbsp; <?php } ?> <?php tpl_button('edit')?>&nbsp; </div> <div class=“clearer”></div> </div> </div> </div> <div class=“no”><?php /* provide DokuWiki housekeeping, required in all templates */ tpl_indexerWebBug()?></div> </body> </html>

Last modified:: 2022/11/07 10:23
   
 
Except where otherwise noted, content on this wiki is licensed under the following license: CC Attribution-Share Alike 4.0 International