diff --git a/content/assets/css/style.css b/content/assets/css/style.css index 9d9402b..7866e75 100644 --- a/content/assets/css/style.css +++ b/content/assets/css/style.css @@ -72,3 +72,11 @@ article date { display: block; margin-bottom: 10px; } + +footer { + text-align: center; + margin-top: 20px; + padding-top: 10px; + padding-bottom: 10px; + border-top: 1px grey solid; +} diff --git a/layouts/_footer.slim b/layouts/_footer.slim new file mode 100644 index 0000000..489e800 --- /dev/null +++ b/layouts/_footer.slim @@ -0,0 +1,2 @@ +footer + | © 2012 Apollic Software, LLC diff --git a/layouts/default.slim b/layouts/default.slim index 098d95e..9caf671 100644 --- a/layouts/default.slim +++ b/layouts/default.slim @@ -7,3 +7,4 @@ html lang='en' .row .span8.offset2 == yield + == render '_footer' diff --git a/layouts/post.slim b/layouts/post.slim index 58967e9..f19802f 100644 --- a/layouts/post.slim +++ b/layouts/post.slim @@ -7,3 +7,4 @@ html lang='en' .row .span8.offset2 == render '_post', post: @item, content: yield + == render '_footer'