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 * MyOwn DokuWiki Template
5 *
6 * @author: Tony Baldwin
7 * @homepage: http://myownsite.me
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
15<link href='http://fonts.googleapis.com/css?family=Roboto:400,400italic,700,500,500italic' rel='stylesheet' type='text/css'>
16  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
17  <meta name="Keywords" content="<?php if ( $conf['tpl_MyOwn']['keywords'] ) echo $conf['tpl_MyOwn']['keywords'].","; ?><?php tpl_pagetitle()?>"/>
18  <meta name="Description" content="<?php if ( $conf['tpl_MyOwn']['description'] ) echo $conf['tpl_MyOwn']['description']; ?><?php tpl_pagetitle()?>"/>
19  <?php tpl_metaheaders()?>
20  <link rel="stylesheet" media="screen" type="text/css" href="<?php echo DOKU_TPL?>css/layout.css" />
21  <link rel="stylesheet" media="screen" type="text/css" href="<?php echo DOKU_TPL?>css/design.css" />
22  <link rel="stylesheet" media="screen" type="text/css" href="<?php echo DOKU_TPL?>css/topbar.css" />
23  <link rel="stylesheet" media="screen" type="text/css" href="<?php echo DOKU_TPL?>css/sidebar.css" />
24
25  <?php if($lang['direction'] == 'rtl') {?>
26  <link rel="stylesheet" media="screen" type="text/css" href="<?php echo DOKU_TPL?>css/rtl.css" />
27  <?php } ?>
28
29  <?php @include(dirname(__FILE__).'/meta.html')?>
30</head>
31