Flexible Lisp Blogware. Fork for personal use. Mirrored from https://github.com/kingcons/coleslaw originally.

base.tmpl 1.2KB

12345678910111213141516171819202122232425262728293031323334
  1. {namespace coleslaw.theme.hyde}
  2. {template base}
  3. <!doctype html>{\n}
  4. <html>
  5. <head>
  6. <title>{$config.title}</title>
  7. <meta http-equiv="content-type" content="application/xhtml+xml; charset=UTF-8" />
  8. <link href="http://fonts.googleapis.com/css?family=Vollkorn:regular,italic,bold,bolditalic" rel="stylesheet" type="text/css" />
  9. <link href="http://fonts.googleapis.com/css?family=Inconsolata" rel="stylesheet" type="text/css" />
  10. <link href= "{$config.domain}/css/style.css" rel="stylesheet" type="text/css" />
  11. <link rel="alternate" href="{$config.domain}/rss.xml" type="application/rss+xml" />
  12. {if $headInject} {$headInject |noAutoescape} {/if}
  13. </head>
  14. <body>
  15. <div class="navigation">
  16. {foreach $link in $config.sitenav}
  17. <a href="{$link.url}">{$link.name}</a>
  18. {sp} | {sp}
  19. {/foreach}
  20. <a href="{$config.domain}">{$config.title}</a>
  21. </div>
  22. <div id="content">
  23. {$raw |noAutoescape}
  24. </div>
  25. {if $bodyInject} {$bodyInject |noAutoescape} {/if}
  26. <div class="fineprint">
  27. Unless otherwise credited all material {if $config.license} {$config.license} {else} © {/if}
  28. {$config.credits}
  29. </div>
  30. </body>
  31. </html>
  32. {/template}