使用 slim 或 haml 在独立(非 Rails)Ruby 应用程序中指定布局和模板
我正在尝试在独立(不是rails)应用程序中执行类似的操作:
layout.slim:
h1 Hello
.content
= yield
show.slim:
= object.name
= object.description
我无法弄清楚如何指定布局和模板。 slim(或haml)可以做到这一点吗?谢谢。
I'm trying to do something like this in a standalone (not rails) app:
layout.slim:
h1 Hello
.content
= yield
show.slim:
= object.name
= object.description
I can't figure out how to specify a layout and a template. Is this possible with slim (or haml)? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
layout.slim 文件如下所示:
Contents.slim 文件如下所示:
这可以缩短,但出于解释目的,我将其分为各个步骤。
这将输出:
The layout.slim file looks like:
The contents.slim file looks like:
This can be shortened, but I separated to individual steps for explanation purposes.
This will output: