Skip to content

Commit

Permalink
fixed missing now helper
Browse files Browse the repository at this point in the history
  • Loading branch information
albogdano committed Jan 7, 2018
1 parent e502ac3 commit af5dd99
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 2 deletions.
24 changes: 24 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
"grunt-contrib-watch": "1.0.0",
"grunt-prettify": "0.4.0",
"handlebars-helper-mdpartial": "0.4.1",
"handlebars-helper-moment": "^0.2.0",
"highlight.js": "9.12.0",
"lodash": "4.17.4",
"marked": "0.3.9",
Expand Down
2 changes: 1 addition & 1 deletion src/monolite/partials/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<footer>
<div class="row">
<div class="col-lg-12 text-center">
<p>Copyright &copy; Company {{now "%Y"}}</p>
<p>Copyright &copy; Company {{moment format="YYYY"}}</p>
</div>
</div>
</footer>
Expand Down
2 changes: 1 addition & 1 deletion src/partials/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<footer>
<div class="row">
<div class="col-lg-12">
<p>Copyright &copy; Company {{now "%Y"}}</p>
<p>Copyright &copy; Company {{moment format="YYYY"}}</p>
</div>
</div>
</footer>
Expand Down

0 comments on commit af5dd99

Please sign in to comment.