Skip to content

botanicus/template-inheritance

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

About

This is a framework-agnostic template inheritance engine from Rango.

Usage

require "template-inheritance"

TemplateInheritance::Template.paths << File.expand_path("..", __FILE__)

template = TemplateInheritance::Template.new("site/post.html.haml")
template.render(post: post)

In Padrino

require "template-inheritance/adapters/padrino"

class Foo & Padrino::Application
  register TemplateInheritance::Rendering
end

Also if you are on Padrino Git HEAD or Padrino 0.9.29, you have to set SKIP_PADRINO_RENDERING to true before Padrino is loaded. It’s because of a bug in Padrino.

Haml Extensions

Tilt::HamlTemplate.options[:default_attributes] = {form: {method: "post"}}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages