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

base.tmpl 1.0KB

123456789101112131415161718192021222324252627282930
  1. {namespace coleslaw.theme.hyde}
  2. {template base}
  3. <!doctype html>{\n}
  4. <html>
  5. <head>
  6. <title>{$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= "css/style.css" rel="stylesheet" type="text/css" />
  11. <link rel="alternate" href="{$siteroot}/feed.atom" type="application/atom+xml" />
  12. {if $headInject} {$headInject |noAutoescape} {/if}
  13. </head>
  14. <body>
  15. <div class="navigation">
  16. {$navigation |noAutoescape}
  17. {$title}
  18. </div>
  19. <div id="content">
  20. {$content |noAutoescape}
  21. </div>
  22. {if $bodyInject} {$bodyInject |noAutoescape} {/if}
  23. <div class="fineprint">
  24. Unless otherwise credited all material {if $license} {$license} {else} © {/if} {$credits}
  25. </div>
  26. </body>
  27. </html>
  28. {/template}