mirror of
https://github.com/JuanCanham/fresh-themes.git
synced 2024-11-14 20:50:11 +00:00
33 lines
683 B
JavaScript
33 lines
683 B
JavaScript
|
|
/**
|
|
Sample helper definitions for HackMyResume's "basis" example theme.
|
|
@license MIT. See LICENSE.md for details.
|
|
@module themes/basis/helpers/sample-helpers
|
|
*/
|
|
|
|
(function() {
|
|
|
|
// Block helper function definitions.
|
|
var SampleHelpers = module.exports = {
|
|
|
|
// A sample helper that returns the supplied value.
|
|
helperA: function(someVal, options) {
|
|
return someVal;
|
|
},
|
|
|
|
// Another sample helper that returns the supplied value.
|
|
helperB: function(title, options) {
|
|
return title;
|
|
},
|
|
|
|
// A sample block helper
|
|
helperC: function(lhs, rhs, options) {
|
|
if (lhs || rhs) {
|
|
return options.fn(this);
|
|
}
|
|
}
|
|
|
|
};
|
|
|
|
}).call(this);
|