{% extends "base.html" %} {% block content %}
{{ settings.site_notice }}
{% if settings and settings.qq_group_link %} {% endif %} {% if settings and settings.wechat_group_qrcode %} {% endif %}
{% if search %}
{% set mobile_apps = [] %} {% for app in apps %} {% if app.platform and ('mobile' in app.platform.split(',')) %} {% set _ = mobile_apps.append(app) %} {% endif %} {% endfor %} {% if mobile_apps|length == 0 %}
未找到相关应用
{% if settings.feedback_link %} {% endif %}
{% else %} {% for app in mobile_apps %}
{% if 'http' in app.icon_path %} {{ app.name }} {% else %} {{ app.name }} {% endif %}

{{ app.name }}

{% endfor %} {% endif %}
{% else %}

全部应用

{{ apps|length }}个应用
{% for category in categories %} {% set category_apps = [] %} {% for app in apps %} {% if app.category_id == category.id %} {% set _ = category_apps.append(app) %} {% endif %} {% endfor %} {% if category_apps|length > 0 %}

{{ category.name }}

{{ category_apps|length }}个应用
{% endif %} {% endfor %}
{% endif %}
{% if settings.donate_enabled == '1' %}

赞赏名单

{% if donors_section %} {% set latest_donor = donors_section|sort(attribute='created_at', reverse=true)|first %} {% if latest_donor and latest_donor.created_at %}

更新时间:{{ latest_donor.created_at|datetime_format }}

{% endif %} {% endif %}
{# 移动端显示 #} {% for donor in donors_section[:mobile_limit] %}
{{ donor.name }}
{% set amount = donor.amount.replace('¥', '').strip() %} {% set float_amount = amount|float %} ¥{{ "%.2f"|format(float_amount) }}
{% if donor.link %} {% endif %}
{% endfor %} {% if donors_section|length > mobile_limit %}
查看全部
共{{ donors_section|length }}条
{% endif %} {# PC端��示 #} {% for donor in donors_section[:pc_limit] %}
{{ donor.name }}
{% set amount = donor.amount.replace('¥', '').strip() %} {% set float_amount = amount|float %} ¥{{ "%.2f"|format(float_amount) }}
{% if donor.link %} {% endif %}
{% endfor %} {% if donors_section|length > pc_limit %}
查看全部
共{{ donors_section|length }}条
{% endif %}
{% endif %} {% endblock %} {% block head %}
{% if settings and settings.qq_group_link %} {% endif %} {% if settings and settings.wechat_group_qrcode %} {% endif %}
{% endblock %} {% include 'nav_bar.html' %} {% block footer %}{% endblock %}