-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Included custom sample handlebars helpers example
- Loading branch information
1 parent
f1d8902
commit d518695
Showing
2 changed files
with
22 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/* | ||
Handlebars CopyrightYear Helper | ||
---- | ||
Usage: {{copyrightYear}} | ||
Name of the file define your block name | ||
// Example file src/helpers/bold.js | ||
module.exports = function(options) { | ||
// options.fn(this) = Handelbars content between {{#bold}} HERE {{/bold}} | ||
var bolder = '<strong>' + options.fn(this) + '</strong>'; | ||
return bolder; | ||
} | ||
* ==================================================== */ | ||
|
||
module.exports = function(options) { | ||
var year = new Date().getFullYear(); | ||
return year; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
<footer> | ||
<h1>App header</h1> | ||
<footer class="o-app__footer c-footer u-text-center"> | ||
<small>Made with love by <strong>Whitesmith™</strong> {{{copyrightYear}}}</small> | ||
</footer> |