我正在尝试在液体布局中渲染液体模板(液体模板朗,而不是CSS液体布局的东西).我似乎无法获得渲染的布局部分.目前使用:
assigns = {'page_name' => 'test'} @layout = Liquid::Template.parse(File.new(@theme.layout.path).read) @template = Liquid::Template.parse(File.new(self.template.path).read) @rend_temp = @template.render(assigns) @rend_layout = @layout.render({'content_for_layout' => @rend_temp}) render :text => @rend_layout,:content_type => :html
页面生成的HTML显示“模板”以流畅的方式呈现,但不包含布局(使用呈现的模板替换布局中的“content_for_layout”)