handlebars-helper-asset

Handlebars helper for generating a relative path from the current file to the specified asset (CSS, JavaScript, image, icon etc.).

Usage no npm install needed!

<script type="module">
  import handlebarsHelperAsset from 'https://cdn.skypack.dev/handlebars-helper-asset';
</script>

README

{{asset}} NPM version

Handlebars helper for generating a assetative link from the current page to the specified page.

Installation

Install with npm

npm i handlebars-helper-asset --save-dev

Install with bower

bower install handlebars-helper-asset --save-dev

Register the helper

The easiest way to register the helper with Assemble is to add the module to devDependencies and keywords in your project's package.json:

{
  "devDependencies": {
    "handlebars-helper-asset": "*"
  },
  "keywords": [
    "handlebars-helper-asset"
  ]
}

Alternatively, to register the helper explicitly in the Gruntfile:

grunt.initConfig({
  assemble: {
    options: {
      // the 'handlebars-helper-asset' npm module must also be listed in
      // devDependencies for assemble to automatically resolve the helper
      helpers: ['handlebars-helper-asset', 'foo/*.js']
    },
    files: {
      'dist/': ['src/templates/*.hbs']
    }
  }
});

Usage

With the helper registered, you may now begin using it in your templates:

<link rel="stylesheet" href="{{asset 'css/styles.css'}}">

Author

Jon Schlinkert

License and Copyright

Copyright (c) 2014 Jon Schlinkert, contributors. Licensed under the MIT License