Nommy template and default config tweaks.

This commit is contained in:
Brit Butler 2012-09-12 17:41:57 -04:00
parent ebe80cd8bf
commit 5161a33c6c
3 changed files with 19 additions and 6 deletions

View file

@ -1,9 +1,13 @@
(:author "Brit Butler"
:deploy "/home/git/blog/"
:domain "http://blog.redlinernotes.com"
:license "CC-BY-SA"
:feeds ("lisp")
:plugins (mathjax)
:repo "/home/git/tmp/improvedmeans/"
:sitenav ""
:sitenav (:url "http://redlinernotes.com/" :name "Home"
:url "http://twitter.com/redline6561" :name "Twitter"
:url "http://github.com/redline6561" :name "Code"
:url "http://soundcloud.com/redlinernotes" :name "Music"
:url "http://redlinernotes.com/docs/talks/" :name "Talks")
:title "Improved Means for Achieving Deteriorated Ends"
:theme "hyde")

View file

@ -25,8 +25,17 @@
</div>
{if $bodyInject} {$bodyInject |noAutoescape} {/if}
<div class="fineprint">
Unless otherwise credited all material {if $config.license} {$config.license} {else} © {/if}
{$config.credits}
<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>

View file

@ -17,7 +17,7 @@
{$post.content |noAutoescape}
</div>{\n}
<div class="relative-nav">{\n}
{if $prev} <a href="{$prev}">Previous</a><br> {/if}{\n}
{if $next} <a href="{$next}">Next</a><br> {/if}{\n}
{if $prev} <a href="{$config.domain}/posts/{$prev.slug}.html">Previous</a><br> {/if}{\n}
{if $next} <a href="{$config.domain}/posts/{$next.slug}.html">Next</a><br> {/if}{\n}
</div>{\n}
{/template}