From 60cdc31b3f85ab89e27708f89c8a3a5ccb4a8876 Mon Sep 17 00:00:00 2001
From: Rohan Sircar <rohansircar@tuta.io>
Date: Sun, 26 Jul 2020 23:55:14 +0530
Subject: [PATCH] Updated footer design

---
 .../resources/templates/fragments/head.html   | 20 ++++++++++---------
 1 file changed, 11 insertions(+), 9 deletions(-)

diff --git a/src/main/resources/templates/fragments/head.html b/src/main/resources/templates/fragments/head.html
index 1e5e489..25e1d45 100644
--- a/src/main/resources/templates/fragments/head.html
+++ b/src/main/resources/templates/fragments/head.html
@@ -80,19 +80,21 @@
 
     <th:block th:fragment="footerFragment">
         <!-- Footer -->
-        <footer class="page-footer font-small blue">
+        <footer class="footer text-small py-2 bg-dark">
 
-            <!-- Copyright -->
-            <div class="footer-copyright text-center py-3">© 2020 Copyright:
-                Chatto
-                <div>
-                    Build revision: <div th:text="${@environment.getProperty('git.build.version')}">None
+            <div class="container-fluid">
+                <div class="row justify-content-between">
+
+                    <div class="col-md-4 text-center text-md-left ">Chatto Version:
+                        <strong th:text="${@environment.getProperty('git.build.version')}">None
+                        </strong>
+                    </div>
+                    <div class="col-md-4  text-center text-md-right">Branch <strong
+                            th:text="${@environment.getProperty('git.branch')}">
+                            None</strong>
                     </div>
                 </div>
-                from branch <div th:text="${@environment.getProperty('git.branch')}">None</div>
             </div>
-            <!-- Copyright -->
-
         </footer>
         <!-- Footer -->
     </th:block>