1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 2<?php 3/** 4 * mmClean DokuWiki Template 5 * 6 * @author Marcin Mierzejewski <marcin.mierzejewski@zenzire.com> 7 */ 8?> 9<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $conf['lang']?>" lang="<?php echo $conf['lang']?>" dir="<?php echo $lang['direction']?>"> 10<head> 11 <title><?php tpl_pagetitle()?> [<?php echo hsc($conf['title'])?>]</title> 12 <meta name="Author" content="Marcin Mierzejewski @ Zenzire"/> 13 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 14 <meta name="Keywords" content="<?php if ( $conf['tpl_mmClean']['keywords'] ) echo $conf['tpl_mmClean']['keywords'].","; ?><?php tpl_pagetitle()?>"/> 15 <meta name="Description" content="<?php if ( $conf['tpl_mmClean']['description'] ) echo $conf['tpl_mmClean']['description']; ?><?php tpl_pagetitle()?>"/> 16 <?php tpl_metaheaders()?> 17 <link rel="stylesheet" media="screen" type="text/css" href="<?php echo DOKU_TPL?>css/layout.css" /> 18 <link rel="stylesheet" media="screen" type="text/css" href="<?php echo DOKU_TPL?>css/design.css" /> 19 <link rel="stylesheet" media="screen" type="text/css" href="<?php echo DOKU_TPL?>css/topbar.css" /> 20 <link rel="stylesheet" media="screen" type="text/css" href="<?php echo DOKU_TPL?>css/sidebar.css" /> 21 22 <?php if($lang['direction'] == 'rtl') {?> 23 <link rel="stylesheet" media="screen" type="text/css" href="<?php echo DOKU_TPL?>css/rtl.css" /> 24 <?php } ?> 25 26 <?php @include(dirname(__FILE__).'/meta.html')?> 27</head> 28