Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/tastaturtier/someparts-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSandro Leuchter <sandro.leuchter@dama.io>2020-02-12 00:12:18 +0300
committerSandro Leuchter <sandro.leuchter@dama.io>2020-02-12 00:12:18 +0300
commit737e72b9e51d5d5dc161049e848bc56e198adc5e (patch)
tree2cba858544c8fdfc4c3f1fba9f0036c63b2ccd67
parentf8ed9e937524de8bdd736e37cf3d0b703e4d4b9f (diff)
lastmod now right justified over the whole width
-rw-r--r--layouts/partials/last-mod.html3
1 files changed, 1 insertions, 2 deletions
diff --git a/layouts/partials/last-mod.html b/layouts/partials/last-mod.html
index c4dc508..a5437ed 100644
--- a/layouts/partials/last-mod.html
+++ b/layouts/partials/last-mod.html
@@ -1,8 +1,7 @@
{{ if .Site.Params.lastmod }}
<div class="container">
<div class="row border-top">
- <div class="col-sm-8"></div>
- <div class="col-sm-4"><p class="text-right">{{ .Site.Params.lastmod | markdownify}}: {{ .Lastmod.Format "02 Jan 2006" | safeHTML }}</p></div>
+ <div class="col-sm-12"><p class="text-right">{{ .Site.Params.lastmod | markdownify}}: {{ .Lastmod.Format "02 Jan 2006" | safeHTML }}</p></div>
</div>
</div>
{{ end }} \ No newline at end of file