您如何支持 Zotonic 中的每页侧边栏内容?
我想在 Zotonic 中添加每页侧边栏内容:
- 链接
- 白皮书
- 网络研讨会
执行此操作的好方法是什么?我需要什么样的模板片段才能使其工作?
I would like to have per-page sidebar content in Zotonic:
- Links
- White papers
- Webinars
What is a good way to do this and what kind of template snippets would I need to make it work?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
登录 Zotonic 管理界面。
创建谓词:
然后,这些谓词将显示在页面编辑器的页面连接中。以这种方式添加其他页面的链接、白皮书的链接和网络研讨会页面的链接。
将以下内容添加到
_article_sidebar.tpl
:添加谓词时,它允许您将元数据添加到 Zotonic 中的 RSC(页面、媒体等)。每个谓词允许您将 RSC 集合连接到 Zotonic 界面中的 RSC。该集合作为 RSC 的 ID 进行存储和访问。
然后可以在模板中访问谓词元数据。表达式
m.rsc[id].links
选择连接到当前页面的RSC ID集合作为链接。表达式
m.rsc[id]
为正在呈现的页面选择RSC。表达式m.rsc[text]
为连接的RSC选择RSC。表达式
{% ifequal text id %}class="current"{% endifequal %}
有条件地呈现 CSS 类属性,该属性会更改链接样式以指示它是当前页面。Log into the Zotonic admin interface.
Create Predicates:
These predicates then show up in Page Connections in the Page editor. Add Links to other pages, links to White papers and links to Webinar pages in this way.
Add the following to
_article_sidebar.tpl
:When you add a Predicate it lets you add metadata to your RSCs (Pages, Media, etc.) in Zotonic. Each Predicate allows you to connect a collection of RSCs to a RSC in the Zotonic interface. This collection is stored and accessed as IDs of RSCs.
Predicate metadata are then accessible within templates. The expression
m.rsc[id].links
selects the collection of IDs of RSCs connected to the current page as Links.The expression
m.rsc[id]
selects the RSC for the page being rendered. The expressionm.rsc[text]
selects the RSC for a onnected RSC.The expression
{% ifequal text id %}class="current"{% endifequal %}
conditionally renders a CSS class attribute that alters the link style to indicate that it is the current page.