{% extends 'public/base.html' %} {% block title %}{{ site_name|default('旺珂') }} · 友情链接{% endblock %} {% block subtitle %}合作伙伴、推荐站点与互链往来 · 共 {{ total|default(0) }} 个{% endblock %} {% block content %} {% if groups and (groups|length) > 0 %} {% for category, items in groups.items() %}

{{ category }}

共 {{ items|length }} 个
{% for f in items %}
{% if f.logo %}
{{ f.title }}
{% else %}
🔗
{% endif %}
{{ f.title }}
{% if f.description %}
{{ f.description }}
{% else %}
{{ f.url }}
{% endif %}
{{ f.url }}
{% endfor %}
{% endfor %} {% else %}
🔗
暂无友情链接
如需交换友链,请到 后台 添加
{% endif %} {% endblock %}