我有这个玉的布局文件,但每次我尝试渲染它我得到 "意外的文字;"在backgound:url(...)。我不知道该如何解决。我看过其他例子,他们这样做。
doctype html
html
head
style
body {
background: url('!{imageURI}');
background-size:75%;
background-repeat: no-repeat;
}
body
h1 Tweets
h1 #{tweet.text}
h1 @#{tweet.user.screen_name}
答案 0 :(得分:0)
您的哈巴狗模板中有两个错误:
style
之后缺少点。正确的模板看起来如此:
doctype html
html
head
body
style.
body {
background: url('!{imageURI}');
background-size: 75%;
background-repeat: no-repeat;
}
h1 Tweets
h1 #{tweet.text}
h1 @#{tweet.user.screen_name}