Processed apps directory via GitHub Actions

This commit is contained in:
QYG2297248353
2025-06-26 06:33:30 +00:00
parent a78a299d00
commit 48c176a653
110 changed files with 932 additions and 932 deletions
@@ -1,28 +0,0 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title>{{ title }}</title>
<!-- 引入 pyecharts 的 JS 依赖 -->
<script src="https://cdn.jsdelivr.net/npm/echarts@5/dist/echarts.min.js"></script>
<style>
body {
font-family: Arial, sans-serif;
}
.chart-container {
}
</style>
</head>
<body>
<h1>{{ title }}</h1>
{% for chart in charts %}
<div class="chart-container">
<h2>{{ chart.year }} 年</h2>
<div>
{{ chart.chart_html | safe }}
</div>
</div>
{% endfor %}
</body>
</html>