coleslaw/themes/hyde/base.tmpl
2012-08-29 23:27:02 -04:00

30 lines
1.1 KiB
Cheetah

{namespace coleslaw.theme.hyde}
{template base}
<!doctype html>{\n}
<html>
<head>
<title>{$title}</title>
<meta http-equiv="content-type" content="application/xhtml+xml; charset=UTF-8" />
<link href="http://fonts.googleapis.com/css?family=Vollkorn:regular,italic,bold,bolditalic" rel="stylesheet" type="text/css" />
<link href="http://fonts.googleapis.com/css?family=Inconsolata" rel="stylesheet" type="text/css" />
<link href= "{$siteroot}/css/style.css" rel="stylesheet" type="text/css" />
<link rel="alternate" href="{$siteroot}/feed.atom" type="application/atom+xml" />
<link rel="alternate" href="{$siteroot}/rss.xml" type="application/rss+xml" />
{if $headInject} {$headInject |noAutoescape} {/if}
</head>
<body>
<div class="navigation">
{$navigation |noAutoescape}
<a href="{$siteroot}">{$title}</a>
</div>
<div id="content">
{$content |noAutoescape}
</div>
{if $bodyInject} {$bodyInject |noAutoescape} {/if}
<div class="fineprint">
Unless otherwise credited all material {if $license} {$license} {else} © {/if} {$credits}
</div>
</body>
</html>
{/template}