I'm new to haml and want to do some inheritance, but I don't know if this is possible with haml or not.
I have two separate haml files as shown below
=== file1.haml
%p
This is haml1
=== file2.haml
%h1
This is haml2
*** I want to have file.hamlthat inherit from file1.hamland file2.haml.
Can this be done with haml?
pang source
share