diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-04-11 03:15:11 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-04-11 03:15:11 +0200 |
commit | b2f70aa8bbdafb3768a11bbca85a60f7100a3aeb (patch) | |
tree | 9f62f71298190f8c9767661c806e7b646f563d9b | |
parent | index.html: use flexbox for header (diff) | |
download | linux-status-b2f70aa8bbdafb3768a11bbca85a60f7100a3aeb.tar.gz linux-status-b2f70aa8bbdafb3768a11bbca85a60f7100a3aeb.zip |
index.html: add a footer
-rw-r--r-- | html/index.html | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/html/index.html b/html/index.html index 659b3b4..99a09be 100644 --- a/html/index.html +++ b/html/index.html @@ -6,8 +6,8 @@ <title>-</title> <link rel="stylesheet" href="css/bootstrap.min.css"> </head> - <body> - <div class="container"> + <body class="d-flex flex-column h-100"> + <div class="container flex-shrink-0"> <div class="row mt-3"> <div class="col"> <div style="display: flex; justify-content: space-between; align-items: center; gap: .5em;"> @@ -62,6 +62,11 @@ <div id="users"> </div> </div> + <footer class="mt-auto py-3 border-top bg-light text-center text-muted small"> + <div class="container"> + <a href="https://github.com/egor-tensin/linux-status">linux-status</a> — simple Linux server monitoring by <a href="mailto:Egor.Tensin@gmail.com">Egor Tensin</a> + </div> + </footer> <script src="js/jquery.min.js"></script> <script src="js/bootstrap.bundle.min.js"></script> <script> |