{%load staticfiles%}是否也可以在Django的css文件中使用?

时间:2016-08-04 02:27:44

标签: html css django twitter-bootstrap

我购买了bootstrap主题,并且.css文件是这样的:

@font-face {
  font-family: 'fontello';
  src: url("../../assets/fonts/fontello/fontello.eot");
  src: url("../../assets/fonts/fontello/fontello-.eot#iefix") format('embedded-opentype'), url("../../assets/fonts/fontello/fontello.woff") format('woff'), url("../../assets/fonts/fontello/fontello.ttf") format('truetype'), url("../../assets/fonts/fontello/fontello.svg#fontello") format('svg');
  font-weight: normal;
  font-style: normal;
}

但是我想使用Django static template所以我改变了它,如下所示:

{% load staticfiles %}

@font-face {
  font-family: 'fontello';
  src: url("{% static 'fonts/fontello/fontello.eot' %}");
  src: url("{% static 'fonts/fontello/fontello-.eot#iefix' %}") format('embedded-opentype'), url("{% static 'fonts/fontello/fontello.woff' %}") format('woff'), url("{% static 'fonts/fontello/fontello.ttf' %}") format('truetype'), url("{% static 'fonts/fontello/fontello.svg#fontello' %}") format('svg');
  font-weight: normal;
  font-style: normal;
}

但它不起作用。 {% load staticfiles %}仅适用于html文件?

然后我如何在css文件中处理它?<​​/ p>

0 个答案:

没有答案