<img src="{% static "images/panda.jpg"
%}" alt="pppanda">
引入bootstrap修饰html时,引用变量时,双引号引用的变量内,再次用到引号时,需要改成单引号,否则会报错
“Tag start is not closed”
<img src="{% static ‘images/panda.jpg’ %}" alt="pppanda">
这样写就好啦,貌似挺多语言都有这种特性,shell/groovy里变量的引号嵌套都挺讲究的,遇到问题可以借鉴排查