aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShulhan <ms@kilabit.info>2019-04-20 01:53:54 +0700
committerShulhan <ms@kilabit.info>2019-04-20 01:53:54 +0700
commitc157abc416d8426d1d219b08b58863f613e71cdb (patch)
tree5116aa1f9d879b3b70461c481154237d8cfd27ff
parent7912eac3d19b08c05220c9d65c0ad21b83c25fbe (diff)
downloadciigo-c157abc416d8426d1d219b08b58863f613e71cdb.tar.xz
templates: move footer to the bottom of body
Instead inside the class page, move the class footer to the bottom of of body. This will make generated HTML distinguishable in body.
-rw-r--r--templates/html.tmpl13
1 files changed, 7 insertions, 6 deletions
diff --git a/templates/html.tmpl b/templates/html.tmpl
index 8ff3a91..6c0b374 100644
--- a/templates/html.tmpl
+++ b/templates/html.tmpl
@@ -26,15 +26,16 @@
<div class="container">
<h1>{{.Title}}</h1>
{{.Body}}
- <div class="footer">
- Copyright 2019, Shulhan &lt;ms@kilabit.info&gt;. All rights reserved.
- <br />
- Use of this source code is governed by a BSD-style license that can be
- found in the <a href="/LICENSE">LICENSE</a> file.
- </div>
</div>
<!-- .container -->
</div>
<!-- .page -->
+
+ <div class="footer">
+ Copyright 2019, Shulhan &lt;ms@kilabit.info&gt;. All rights reserved.
+ <br />
+ Use of this source code is governed by a BSD-style license that can be
+ found in the <a href="/LICENSE">LICENSE</a> file.
+ </div>
</body>
</html>