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 * mmKanso 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 echo hsc($conf['title'])?> :: <?php tpl_pagetitle()?></title> 12 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 13 <meta name="Author" content="Marcin Mierzejewski @ Zenzire"/> 14 <meta name="Keywords" content="<?php if ( $conf['tpl_mmKanso']['keywords'] ) echo $conf['tpl_mmKanso']['keywords'].","; ?><?php tpl_pagetitle()?>"/> 15 <meta name="Description" content="<?php if ( $conf['tpl_mmKanso']['description'] ) echo $conf['tpl_mmKanso']['description']; ?><?php tpl_pagetitle()?>"/> 16 <?php tpl_metaheaders()?> 17 <link rel="stylesheet" media="screen" type="text/css" href="<?php echo DOKU_TPL?>css/design.css" /> 18 <link rel="stylesheet" media="screen" type="text/css" href="<?php echo DOKU_TPL?>css/menu.css" /> 19 <link rel="stylesheet" media="screen" type="text/css" href="<?php echo DOKU_TPL?>css/gallery.css" /> 20 <?php @include(dirname(__FILE__).'/meta.html')?> 21</head> 22