Skip to content

ericdfields/hamlc-loader

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Haml-Coffee (Hamlc) Loader for Webpack

Import haml-coffee files as modules in your webpack project. Returns a template function to render the template.

Setup

Add to your webpack config module.loaders:

{ test: /\.hamlc$/, loader: "hamlc-loader" }

Including templates in modules

webpack/assets/javascripts/templates/my_template.hamlc

.template
  %h1= @title

webpack/assets/javascripts/modules/my_module.js

MyTemplate = require("templates/my_template.hamlc")
MyTemplate({title: 'Go Boundless!'})

will return the HTML:

<div class="template">
  <h1>Go Boundless!</h1>
</div>

About

Hamlc loader for webpack

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published