如何从 Zotonic 的 CMS 界面内控制 CSS 样式?
我想让我的创意同事通过 Zotonic CMS 用户界面访问 CSS。
如何从 Zotonic 的 CMS 界面内控制 CSS 样式?
I would like to give my creative colleagues access to the CSS through the Zotonic CMS user interface.
How do you control CSS styles from within the CMS interface in Zotonic?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一种设计思想是 CSS(和模板)需要受到版本控制。这就是为什么我们将 CSS(和模板)与内容编辑分开。
当您的设计师可以使用 Mercurial 时,还有另一种方法:
priv/config
文件中的密码现在您将在站点后面看到一个“更新”按钮。单击此按钮时,会出现
hg pull -u< /code> 将发布新的 css(和其他部分)
。
One design idea was that css (and templates) need to be under version control. That is why we kept the css (and templates) separate from the content-editing.
When your designers can use mercurial, then there is another way:
priv/config
fileNow you will see an "update" button behind your site. When you click this button then a
hg pull -u
of your site is performed. This will publish the new css (and other parts).