From 6d2d5e59cc7f80104939903c9fa5ae28e5c81759 Mon Sep 17 00:00:00 2001 From: 13315423919 <13315423919@qq.com> Date: Fri, 7 Nov 2025 09:05:37 +0800 Subject: [PATCH] Add File --- src/landppt/web/templates/scenarios.html | 385 +++++++++++++++++++++++ 1 file changed, 385 insertions(+) create mode 100644 src/landppt/web/templates/scenarios.html diff --git a/src/landppt/web/templates/scenarios.html b/src/landppt/web/templates/scenarios.html new file mode 100644 index 0000000..27b9195 --- /dev/null +++ b/src/landppt/web/templates/scenarios.html @@ -0,0 +1,385 @@ +{% extends "base.html" %} + +{% block title %}场景选择 - LandPPT{% endblock %} + +{% block extra_css %} + +{% endblock %} + +{% block content %} +
+

🎨 选择 PPT 场景

+

选择最适合您需求的场景模板,AI 将根据场景特点生成专业的 PPT

+
+ +
+ {% for scenario in scenarios %} +
+
+
{{ scenario.icon }}
+

{{ scenario.name }}

+

{{ scenario.description }}

+ +
+
+ {% endfor %} +
+ + + + + +{% endblock %} + +{% block extra_js %} + +{% endblock %}