20 lines
883 B
HTML
20 lines
883 B
HTML
<!-- 版权声明 footer -->
|
|
<footer class="bg-light text-center py-4 mt-auto border-top">
|
|
<div class="container">
|
|
<!-- 两家合作企业logo -->
|
|
<div class="d-flex justify-content-center align-items-center gap-4 mb-3">
|
|
<img src="{{ url_for('static', filename='images/有音-logo和字.png') }}"
|
|
alt="有音教育"
|
|
style="height: 40px; width: auto;"
|
|
loading="lazy">
|
|
<img src="{{ url_for('static', filename='images/艺超-logo和字.png') }}"
|
|
alt="艺超音乐"
|
|
style="height: 40px; width: auto;"
|
|
loading="lazy">
|
|
</div>
|
|
<!-- 版权文字 -->
|
|
<p class="text-muted small mb-0">
|
|
© 2024-2026 有音教育 & 艺超音乐 联合开发 | 个性化钢琴教学系统
|
|
</p>
|
|
</div>
|
|
</footer> |