update download.html

This commit is contained in:
2025-08-30 19:51:53 +08:00
parent 682355231a
commit 9d08885024
33 changed files with 800 additions and 108 deletions

View File

@@ -15,7 +15,7 @@
<div class="container">
<h1>
<a href="{{ url_for('index') }}" class="logo">
<img src="{{ url_for('static', filename='images/logo1.png') }}" alt="{{ t('company_name') }}"
<img src="{{ url_for('static', filename='images/logo_hk.svg') }}" alt="{{ t('company_name') }}"
class="logo-img">
<!-- {{ t('company_name') }} -->
</a>
@@ -28,13 +28,14 @@
<nav class="nav-menu">
<ul>
<li><a href="{{ url_for('index') }}">{{ t('home') }}</a></li>
<li><a href="{{ url_for('services') }}">{{ t('services') }}</a></li>
<!-- <li><a href="{{ url_for('services') }}">{{ t('services') }}</a></li> -->
<li><a href="{{ url_for('pricing') }}">{{ t('pricing') if t('pricing') else '收费' }}</a></li>
<li><a href="{{ url_for('download') }}">{{ t('download') if t('download') else '下载' }}</a></li>
<li><a href="{{ url_for('help') }}">{{ t('help') if t('help') else '帮助' }}</a></li>
<!-- <li><a href="{{ url_for('help') }}">{{ t('help') if t('help') else '帮助' }}</a></li> -->
<li><a href="{{ url_for('contact') }}">{{ t('contact') }}</a></li>
<li><a href="{{ url_for('about') }}">{{ t('about') }}</a></li>
<li><a href="https://bayizhinengjf.vip.cpolar.cn/" target="_blank">{{ t('online') }}</a></li>
<!-- <li><a href="{{ url_for('about') }}">{{ t('about') }}</a></li> -->
<li><a href="https://longportapp.cn/zh-HK/login?state=aHR0cHM6Ly90cmFkZS5sb25ncG9ydGFwcC5jb20/cmVkaXJlY3RfdG89JTJGJl90PTE3MzQ2ODUxMzMzNjU=&login-from=web-trade&logout=1"
target="_blank">{{ t('online') }}</a></li>
</ul>
<div class="language-switcher">
<select id="language-dropdown" onchange="changeLanguage(this.value)">
@@ -63,10 +64,20 @@
<h4>{{ t('quick_links') if t('quick_links') else '快速链接' }}</h4>
<ul>
<li><a href="{{ url_for('index') }}">{{ t('home') }}</a></li>
<li><a href="{{ url_for('about') }}">{{ t('about') }}</a></li>
<li><a href="{{ url_for('services') }}">{{ t('services') }}</a></li>
<!-- <li><a href="{{ url_for('about') }}">{{ t('about') }}</a></li> -->
<!-- <li><a href="{{ url_for('services') }}">{{ t('services') }}</a></li> -->
<li><a href="{{ url_for('contact') }}">{{ t('contact') }}</a></li>
<li><a href="https://bayizhinengjf.vip.cpolar.cn/" target="_blank">{{ t('online') }}</a></li>
<li><a href="https://longportapp.cn/zh-HK/login?state=aHR0cHM6Ly90cmFkZS5sb25ncG9ydGFwcC5jb20/cmVkaXJlY3RfdG89JTJGJl90PTE3MzQ2ODUxMzMzNjU=&login-from=web-trade&logout=1"
target="_blank">{{ t('online') }}</a></li>
</ul>
</div>
<div class="footer-links">
<h4>{{ t('termsdescription') }}</h4>
<ul>
<li><a href="{{ url_for('index') }}">免责声明</a></li>
<li><a href="{{ url_for('about') }}">服务条款</a></li>
<li><a href="{{ url_for('services') }}">隐私政策</a></li>
<li><a href="{{ url_for('services') }}">更多</a></li>
</ul>
</div>
<div class="footer-links">
@@ -77,6 +88,7 @@
{% endfor %}
</ul>
</div>
<div class="footer-links">
<h4>{{ t('contact_us') if t('contact_us') else '联系我们' }}</h4>
<ul>
@@ -88,10 +100,6 @@
</div>
<div class="footer-bottom">
<p>&copy; 2025 {{ company.name }}. {{ t('all_rights_reserved') }}</p>
<div class="footer-links">
<a href="#">{{ t('privacy_policy') }}</a>
<a href="#">{{ t('terms_of_use') }}</a>
</div>
</div>
</div>
</footer>
@@ -100,6 +108,7 @@
<script src="{{ url_for('static', filename='js/tabs.js') }}"></script>
<script src="{{ url_for('static', filename='js/market-ticker.js') }}"></script>
<script src="{{ url_for('static', filename='js/help-navigation.js') }}"></script>
<script src="{{ url_for('static', filename='js/terms-modal.js') }}"></script>
</body>
</html>