当我有这个HAML文件(Rails布局)时
!!! 5
%html
%head
= stylesheet_link_tag 'admin'
%body
%h1 ADMIN TEST
= yield
当我尝试查看该页面时出现以下错误:
Illegal nesting: content can't be both given on the same line as %h1 and nested within it.
是什么给出的? (错误指向yield
行)。
答案 0 :(得分:1)
我明白我做了什么。 = yield
被标记为好像它在%h1
内,而不是在身体后面。我忽略了这一点。