mirror of
https://github.com/LC044/WeChatMsg
synced 2025-02-22 19:02:17 +08:00
14 lines
237 B
HTML
14 lines
237 B
HTML
|
{% import 'macro' as macro %}
|
||
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
{{ macro.render_chart_dependencies(chart) }}
|
||
|
</head>
|
||
|
<body>
|
||
|
{% for c in chart %}
|
||
|
{{ macro.render_chart_content(c) }}
|
||
|
{% endfor %}
|
||
|
</body>
|
||
|
</html>
|