diff options
-rw-r--r-- | config/resources.json | 3 | ||||
-rw-r--r-- | src/_css/style.css | 1 | ||||
-rw-r--r-- | template/index.tpl | 13 |
3 files changed, 15 insertions, 2 deletions
diff --git a/config/resources.json b/config/resources.json index 6226236..d069964 100644 --- a/config/resources.json +++ b/config/resources.json @@ -6,7 +6,8 @@ ], "sheets": [ "readable.min.css", - "ekko-lightbox.min.css" + "ekko-lightbox.min.css", + "style.css" ], "minify": 1 } diff --git a/src/_css/style.css b/src/_css/style.css new file mode 100644 index 0000000..ad8f4e8 --- /dev/null +++ b/src/_css/style.css @@ -0,0 +1 @@ +body { margin-top: 95px } diff --git a/template/index.tpl b/template/index.tpl index 66570bb..c6bc195 100644 --- a/template/index.tpl +++ b/template/index.tpl @@ -1,5 +1,5 @@ <!DOCTYPE html> -<html lang="{$lang|default:'pl'}"> +<html lang="{$lang|default:'en'}"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> @@ -24,6 +24,17 @@ {$content} + <div class="container" > + <hr /> + <footer> + <p> + <address> + <span class="copy">©</span> + <a href="//emkael.info/">emkael</a>, 2016 + </address> + </footer> + </div> + {foreach from=$scripts item=script} <script src="_js/{$script}" type="text/javascript"></script> {/foreach} |