In Rails/HAML I have the following partial:
.blur
.blur.underground= text
.blur.foreground
= yield
It draws blurred out text in the underground and (should) draw the yielded content in the foreground. Unfortunately, when I call
= render 'partial name' do
%h1 xyz
the '%h1 xyz' is not inserted in my partial.
Am I doing something wrong or is there an alternative way to achieve this?