I am new to haml and want to do some inheritance, but I don't know whether it is possible with haml or not.
I have 2 separate haml files as below
=== file1.haml
%p
This is haml1
=== file2.haml
%h1
This is haml2
*** I want to have a file.haml
which inherit from file1.haml
and file2.haml
.
Is it possible to do it with haml?