2011-04-16 15:46:12 -04:00
|
|
|
{namespace coleslaw.theme.hyde}
|
|
|
|
|
|
|
|
{template base}
|
|
|
|
<!doctype html>{\n}
|
|
|
|
<html>
|
|
|
|
<head>
|
2012-09-12 12:56:11 -04:00
|
|
|
<title>{$config.title}</title>
|
2011-04-16 15:46:12 -04:00
|
|
|
<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" />
|
2012-09-12 12:56:11 -04:00
|
|
|
<link href= "{$config.domain}/css/style.css" rel="stylesheet" type="text/css" />
|
|
|
|
<link rel="alternate" href="{$config.domain}/rss.xml" type="application/rss+xml" />
|
2012-09-14 18:37:56 -04:00
|
|
|
{if $injections.head}
|
|
|
|
{foreach $injection in $injections.head}
|
|
|
|
{$injection |noAutoescape}
|
|
|
|
{/foreach}
|
|
|
|
{/if}
|
2011-04-16 15:46:12 -04:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="navigation">
|
2012-09-13 09:20:30 -04:00
|
|
|
<a href="{$config.domain}">{$config.title}</a> |
|
2012-09-12 12:56:11 -04:00
|
|
|
{foreach $link in $config.sitenav}
|
|
|
|
<a href="{$link.url}">{$link.name}</a>
|
2012-09-13 09:20:30 -04:00
|
|
|
{if not isLast($link)} | {/if}
|
2012-09-12 12:56:11 -04:00
|
|
|
{/foreach}
|
2011-04-16 15:46:12 -04:00
|
|
|
</div>
|
|
|
|
<div id="content">
|
2012-09-12 14:18:23 -04:00
|
|
|
{$raw |noAutoescape}
|
2011-04-16 15:46:12 -04:00
|
|
|
</div>
|
2012-09-14 18:37:56 -04:00
|
|
|
{if $injections.body}
|
|
|
|
{foreach $injection in $injections.body}
|
|
|
|
{$injection |noAutoescape}
|
|
|
|
{/foreach}
|
|
|
|
{/if}
|
2011-04-16 15:46:12 -04:00
|
|
|
<div class="fineprint">
|
2012-09-12 17:41:57 -04:00
|
|
|
<hr>
|
|
|
|
Unless otherwise credited all material
|
|
|
|
{if $config.license}
|
|
|
|
{$config.license}
|
|
|
|
{else}
|
|
|
|
<a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/deed.en_US">
|
|
|
|
<img alt="Creative Commons License" style="border-width:0" src="{$config.domain}/css/cc-by-sa.png" />
|
|
|
|
</a>
|
|
|
|
{/if}
|
|
|
|
by {$config.author}
|
|
|
|
<img align="right" src="{$config.domain}/css/logo_small.jpg" />
|
2011-04-16 15:46:12 -04:00
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
{/template}
|