Skip to content

Latest commit

History

16 Commits

Folders and files

NameName
Last commit message
Last commit date

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:

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

About

Hamlc loader for webpack

Resources

Stars

6 stars

Watchers

1 watching

Forks

Releases

Packages

Used by

Contributors

Languages