macro【ˈmækrəʊ】 宏指令, 巨
巨大的,大量的,特别突出的,及厚的
1.可以定义函数
2.调用{% from 'xxx.html' import hello %}
数据过滤
1.解析带样式的content_h2的字符串,使用safe过滤器
{{ content_h2 | safe }}
- trim 去掉空格
- length 长度
- lower 小写
- upper 大写
static加载: - <link href='/static/css/xxx.css'>
2.<link href='{{ url_for('static', filename = 'css/xxx.css')}}'>