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 * simpleClean DokuWiki Template
5 *
6 * @author: Tazman DeVille
7 * @homepage: http://tazmandevil.info
8 */
9?>
10<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $conf['lang']?>" lang="<?php echo $conf['lang']?>" dir="<?php echo $lang['direction']?>">
11<head>
12	<title><?php tpl_pagetitle()?> [<?php echo hsc($conf['title'])?>]</title>
13	<meta name="Author" content="Marcin Mierzejewski @ Zenzire"/>
14  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
15  <meta name="Keywords" content="<?php if ( $conf['tpl_simpleClean']['keywords'] ) echo $conf['tpl_simpleClean']['keywords'].","; ?><?php tpl_pagetitle()?>"/>
16  <meta name="Description" content="<?php if ( $conf['tpl_simpleClean']['description'] ) echo $conf['tpl_simpleClean']['description']; ?><?php tpl_pagetitle()?>"/>
17  <?php tpl_metaheaders()?>
18  <link rel="stylesheet" media="screen" type="text/css" href="<?php echo DOKU_TPL?>css/layout.css" />
19  <link rel="stylesheet" media="screen" type="text/css" href="<?php echo DOKU_TPL?>css/design.css" />
20  <link rel="stylesheet" media="screen" type="text/css" href="<?php echo DOKU_TPL?>css/topbar.css" />
21  <link rel="stylesheet" media="screen" type="text/css" href="<?php echo DOKU_TPL?>css/sidebar.css" />
22
23  <?php if($lang['direction'] == 'rtl') {?>
24  <link rel="stylesheet" media="screen" type="text/css" href="<?php echo DOKU_TPL?>css/rtl.css" />
25  <?php } ?>
26
27  <?php @include(dirname(__FILE__).'/meta.html')?>
28</head>
29