如何使液体模板用作布局
这是一个使用 Rails 3.1 的工作应用程序
https://github.com/neerajdotname/nimbleshop
所有视图都是除了布局之外,与 .liquid 扩展名一起工作正常。
我尝试过,但无法使布局将内容生成到渲染页面。 这是我在布局中尝试的
{{ content_for_layout }}
Here is a working application with Rails 3.1
https://github.com/neerajdotname/nimbleshop
All the views are working fine with .liquid extension except the layout.
I tried but I am unable to make the layout yield the content to the rendering page.
This is what I tried in the layout
{{ content_for_layout }}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
另外 - 对于 Rails 3,要正确使用 Liquid,您需要更新 Liquid 视图,以便它与 Rails 3 配合使用并正确提取 content_for_layout 的数据。
在这里查看更新后的液体视图 --> https://gist.github.com/2914625
Also - for rails 3, to properly use liquid you need to update the liquid view so that it works with rails three and properly pulls the data for content_for_layout.
Look at the updated liquid view here --> https://gist.github.com/2914625