创建新的 drupal 主题
我知道 Zen 起始主题非常受欢迎,但我发现编辑其他人制作的主题更困难(即使它像 Zen 一样简单)在静态 html 中创建我自己的。从静态 html 设计开始然后将其移植到 drupal 是一个好主意吗?或者我只是无缘无故地做了两倍的工作?
我有兴趣听听其他更有经验的 Drupal 开发人员在设计新主题时会做什么。
I know that the Zen starting theme is very popular but I find it harder to edit a theme made by someone else (even if it's as simple as Zen) that to create my own in static html. Is it ever a good idea to start with a static html design and then port it over to drupal? Or am I just doing twice the work for no reason?
I'm interested in hearing what other, more experienced, drupal devs do when designing a new theme.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
就我个人而言,我永远不会手动编码所有 html 和 css,然后将其移植到 Drupal 主题。我不同意 Kevin 的观点“所有主题都以 html 开头”。请允许我引用我之前在 drupal.org 论坛上写的内容:
在另一个主题我写道:
如果您习惯于编写静态 html,那么 Drupal 主题化可能需要改变心态。如果您想高效地使用 Drupal 主题,则必须学习使用默认的 html 输出。只要有可能,只使用 CSS。 入门主题,例如 禅宗、创世纪 和 Fusion 为构建您自己的自定义主题提供了良好的基础。
Personally, I would never hand-code all html and css and then port it to a Drupal theme. I don't agree with Kevin that "all themes start as html". Allow me to quote what I wrote before on the drupal.org forum:
And in another topic I wrote:
If you're used to writing static html, Drupal theming may require a change in mentality. If you want to be efficient in Drupal theming, you will have to learn to work with the default html output. Whenever possible, use only css. Starterthemes like Zen, Genesis and Fusion provide an excellent base to build your own custom theme.