在 Webby 布局中设置属性

发布于 2024-07-05 01:00:09 字数 168 浏览 8 评论 0原文

我正在与 Webby 合作,并寻求一些说明。 我可以在布局中定义 titleauthor 等属性吗?

I'm working with Webby and am looking for some clarification. Can I define attributes like title or author in my layout?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

怂人 2024-07-12 01:00:09

并不真地。 布局可以访问页面属性,而不是其他方式。

实现您想要的操作的最简单方法是在站点的 Rakefile(可能是 build.rake)中填充 SITE.page_defaults 哈希值。 添加如下内容:

SITE.page_defaults['title']             = "My awesome title"
SITE.page_defaults['author']            = "Shazbug"
SITE.page_defaults['is_mando_awesome']  = "very yes"

您现在可以在模板中访问这些哈希成员:

Written by <%= @page.author %>

您可以在 Google 网上论坛上找到有关 Webby 页面默认内容的更多信息,特别是在这里:

http://groups.google.com/group/webby-forum/browse_thread/thread /f3dc1f4187959634/c30d7883705f6218?lnk=gst&q=SITE#c30d7883705f6218

Not really. The layout has access to the page attributes rather than the other way.

The easiest way to do what you want is to populate the SITE.page_defaults hash in your site's Rakefile (probably build.rake). Add something like the following:

SITE.page_defaults['title']             = "My awesome title"
SITE.page_defaults['author']            = "Shazbug"
SITE.page_defaults['is_mando_awesome']  = "very yes"

You can now access those hash members in your template:

Written by <%= @page.author %>

You can find more info about Webby's page default stuff on the Google Group, specifically here:

http://groups.google.com/group/webby-forum/browse_thread/thread/f3dc1f4187959634/c30d7883705f6218?lnk=gst&q=SITE#c30d7883705f6218

没︽人懂的悲伤 2024-07-12 01:00:09

我从未使用过它,但这里的教程:

使它看起来像你的问题的答案是“是的”。 具体来说,我正在该页面上的“进行更改”标题下查看。

I've never used it but the tutorial here:

Makes it look like the answer to your question is "yes". Specifically I'm looking under the "Making Changes" header on that page.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文