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

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCameron Moore <moorereason@gmail.com>2017-09-27 06:09:47 +0300
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2017-09-27 09:42:44 +0300
commita354d130dc8aaab8bdaf7223af3aa862db44c9d5 (patch)
treef1af4349e3b64105f2b0a6c0b3c37001a6d39e54 /examples
parentf806e951fd7f1c98b1b2b87b35d02525830f5451 (diff)
examples: Fix `now` usage in footer
Diffstat (limited to 'examples')
-rw-r--r--examples/blog/layouts/partials/footer.copyright.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/blog/layouts/partials/footer.copyright.html b/examples/blog/layouts/partials/footer.copyright.html
index 64c9353ea..7f7b5fc7b 100644
--- a/examples/blog/layouts/partials/footer.copyright.html
+++ b/examples/blog/layouts/partials/footer.copyright.html
@@ -2,8 +2,8 @@
<div class="row">
<hr>
<div class="col-sm-12">
- <p>&copy; Enthusiastic Hugo User {{ .Now.Format "2006" }} &middot;
+ <p>&copy; Enthusiastic Hugo User {{ now.Format "2006" }} &middot;
Built with <a href="https://github.com/gohugoio/hugo">Hugo</a></p>
</div>
</div>
- </footer> \ No newline at end of file
+ </footer>