将 %link 指令的输出添加到变量中?
在我的 master 中加载了部分 _styles 。 在这个_styles中有一个^var styles = "" 现在,在我的所有视图或部分中,我可以说 var styles = styles+"another style"
通常,样式定义为
%link{ href="../../content/css/partial.css" rel="stylesheet" type="text/css" }
如何将 %link 指令的输出附加到 styles 变量?
In my master a partial _styles is loaded.
In this _styles there is a ^var styles = ""
Now in all my views or partials I can say var styles = styles+"another style"
Normally a style is defined as
%link{ href="../../content/css/partial.css" rel="stylesheet" type="text/css" }
How can I append the output of the %link directive to the styles variable?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我写了一篇关于添加的 帖子与 NHAML 的样式和链接。
这应该可以为您完成所有工作。
I wrote a post about adding styles and links with the NHAML.
This should do all job for you.