HAML に部分ファイルを含めて動作させることができません。
基本的な HAML テストのコードがあります
# file: partial_layout.haml
%h1 Partial layout used with for block:
= render :layout => 'layout_for_partial' do
%p Some content within a layout
そして2番目のファイル
# file: _layout_for_partial.haml
.partial-layout
%h2 This is inside a partial layout
= yield
そこで、Prepros アプリのコンパイル ボタンをクリックします。
Exception on line 2: undefined method `render' for #<Object:0x2a196c8>
Use --trace for backtrace.
D:\Download\haml-master\haml-master\test\templates\partial_layout.haml
これは基本的な HAML 関数である必要があります。私は何を間違っていますか?