我有这个json:
"bg-image": {
"sm": "",
"md": "",
"unique" : ""
}
我有这段代码:
{{#if bg-image }}
<style>
@media screen and (max-width:642px) {
.masthead {
background-image: url({{bg-image.sm}});
}
}
@media screen and (min-width:643px) {
.masthead {
background-image: url({{bg-image.md}});
}
}
</style>
{{/if}}
但我想做点什么:
{{#if !bg-image.unique}}// then set bg-image.sm or bg-image.md {{/if}}