Skip to content

weathermen/hamljs-loader

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

HamlJS Loader for Webpack

Import "static" Haml files as modules in your webpack project. Returns a template function that can be called with your passed-in local attributes.

This is a fork of haml-haml-loader.

Setup

Add to your webpack config module.loaders:

{ test: /\.html\.haml$/, loader: "hamljs" }

Rendering templates

webpack/assets/javascripts/templates/my_template.html.haml

.template
  %h1= title

webpack/assets/javascripts/modules/my_module.js

import Template from "../templates/my_template.html.haml"

const title = "My Title"
const template = Template({ title })

document.append(template)

will return the HTML:

<div class="template">
  <h1>My Title</h1>
</div>

About

Haml template loader for Webpack using haml.js

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%