50 lines
1.7 KiB
Cheetah
50 lines
1.7 KiB
Cheetah
{namespace coleslaw.theme.hyde}
|
|
|
|
{template base}
|
|
<!doctype html>{\n}
|
|
<html>
|
|
<head>
|
|
<title>{$config.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= "{$config.domain}/css/style.css" rel="stylesheet" type="text/css" />
|
|
<link rel="alternate" href="{$config.domain}/rss.xml" type="application/rss+xml" />
|
|
{if $injections.head}
|
|
{foreach $injection in $injections.head}
|
|
{$injection |noAutoescape}
|
|
{/foreach}
|
|
{/if}
|
|
</head>
|
|
<body>
|
|
<div class="navigation">
|
|
<a href="{$config.domain}">{$config.title}</a> |
|
|
{foreach $link in $config.sitenav}
|
|
<a href="{$link.url}">{$link.name}</a>
|
|
{if not isLast($link)} {sp}|{sp} {/if}
|
|
{/foreach}
|
|
</div>
|
|
<div id="content">
|
|
{$raw |noAutoescape}
|
|
</div>
|
|
{if $injections.body}
|
|
{foreach $injection in $injections.body}
|
|
{$injection |noAutoescape}
|
|
{/foreach}
|
|
{/if}
|
|
<div class="fineprint">
|
|
<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" />
|
|
</div>
|
|
</body>
|
|
</html>
|
|
{/template}
|