Files
WebServer/templates/about.html
2025-08-28 23:59:13 +08:00

41 lines
1.3 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends "base.html" %}
{% block title %}关于我们{% endblock %}
{% block content %}
<section class="about">
<div class="container">
<h2>关于捌壹智能</h2>
<p>{{ company.about }}</p>
<h3>我们的使命</h3>
<p>通过创新技术推动企业数字化转型,为客户创造长期价值。</p>
<h3>我们的愿景</h3>
<p>成为全球领先的数字技术解决方案提供商,用科技改变世界。</p>
</div>
</section>
<section class="team">
<div class="container">
<h2>领导团队</h2>
<div class="team-grid">
<div class="team-member">
<h3>张明</h3>
<p class="position">创始人 & CEO</p>
<p>人工智能专家拥有15年行业经验。</p>
</div>
<div class="team-member">
<h3>李华</h3>
<p class="position">技术总监</p>
<p>大数据和云计算领域专家。</p>
</div>
<div class="team-member">
<h3>王芳</h3>
<p class="position">市场总监</p>
<p>数字营销和品牌战略专家。</p>
</div>
</div>
</div>
</section>
{% endblock %}