西纳特拉 +小胡子 + CSS 问题
我正在尝试制作我的第一个 Sinatra + Mustache 网站,但我遇到了一些问题,包括供我的 Mustache 模板使用的 css 文件。像普通 css 文件一样包含它们是行不通的,也不能将它们放入 /public/css/mystyle.css 格式。
有谁知道如何正确执行此操作?
谢谢
I am trying to make my first Sinatra + Mustache site but I am having issues including css files for my mustache templates to use. Including them like a normal css file won't work and neither will putting them in a /public/css/mystyle.css format.
Does anyone know how to do this properly?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定我是否正确理解了您的问题,但是如果您的 css 文件位于
public/css/mystyle.css
中,您应该将其包含在其中我可以想到几个原因,例如它不会发生。您已经:
/
public_folder
,如下所示:set :public_folder, "path to otherfolder"
new_root/public
configure.ru
文件中设置一些路径I'm not sure that I'm understanding your question properly, but if your css file is in
public/css/mystyle.css
you should include it withThere are several reasons I can think of, for it not to happen. You have:
/
public_folder
like this:set :public_folder, "path to other folder"
new_root/public
configure.ru
file