Docs: add panel showing the last revision of a page
authordigitalcraftsman <digitalcraftsman@users.noreply.github.com>
Mon, 4 Jan 2016 17:15:08 +0000 (18:15 +0100)
committerAnthony Fok <foka@debian.org>
Thu, 7 Jan 2016 11:23:26 +0000 (04:23 -0700)
The panel also contains the version of the
documentation.

docs/layouts/partials/footer.html
docs/static/css/bootstrap-gohugo.css
docs/static/css/style.css

index f5c28376cc990064706e13818cc9d1ad3cb1bcdb..9ddc619030158dade73ad6e2ea1e922057492f8b 100644 (file)
@@ -1,7 +1,13 @@
+                    <div class="row">
+                        <div class="footer-panel">
+                        <p>Last revision: {{ .Lastmod.Format "January 2, 2006" }}
+                          <span style="float: right;">Hugo v{{ .Hugo.Version }} documentation</span>
+                        </p>
+                        </div>
+                    </div>
 
                     </div>
                     </section>
-                    <div style="font-size: medium; font-style: italic; text-align: right;">Hugo v{{ .Hugo.Version }} documentation</div>
 
                     </div>
 
index 176e5aa567bc3d1363ab2b89abef2e263d5c4774..1a929cfe81cd202bb564387b48bf83ae623e5d35 100644 (file)
@@ -1271,7 +1271,7 @@ label {
           box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
 }
 .panel-body {
-  padding: 15px;
+  padding: 15px 15px 0px 15px;
 }
 .carousel {
   position: relative;
index 89f6324e860d71ac2c2a141d9281f05b5431cf10..bbac6662618752f4902961376c39e088a4e1541c 100644 (file)
@@ -622,3 +622,23 @@ i.freebsd-19px:before {
         display: none;
     }
 }
+
+
+/* Footer panel */
+.footer-panel {
+    width: 100%;
+    border-top:1px #efefef solid;
+    line-height: 30px;
+    padding: 25px 0px 15px;
+    margin-top: 15px;
+    background: #f9f9f9;
+    display: inline-block;
+    float: left;
+}
+
+.footer-panel p {
+    padding-left: 20px;
+    padding-right: 20px;
+    font-size: medium;
+    font-style: italic;
+}