diff options
| author | Shulhan <ms@kilabit.info> | 2019-04-20 01:53:54 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2019-04-20 01:53:54 +0700 |
| commit | c157abc416d8426d1d219b08b58863f613e71cdb (patch) | |
| tree | 5116aa1f9d879b3b70461c481154237d8cfd27ff | |
| parent | 7912eac3d19b08c05220c9d65c0ad21b83c25fbe (diff) | |
| download | ciigo-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.tmpl | 13 |
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 <ms@kilabit.info>. 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 <ms@kilabit.info>. 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> |
