37 lines
1.1 KiB
HTML
37 lines
1.1 KiB
HTML
{% load static %}
|
|
{% load i18n %}
|
|
{% load l10n %}
|
|
{% load admin_url %}
|
|
{% load mastodon %}
|
|
{% load oauth_token %}
|
|
{% load truncate %}
|
|
{% load thumb %}
|
|
<!DOCTYPE html>
|
|
<html lang="zh" class="classic-page">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
{% block title %}<title>{{ site_name }} - {{ user.mastodon_username }}</title>{% endblock %}
|
|
{% include "common_libs.html" with jquery=0 v2=1 %}
|
|
</head>
|
|
<body>
|
|
{% include "_header.html" %}
|
|
<main>
|
|
<div class="grid__main">
|
|
<h5>
|
|
{% block head %}{{ user.mastodon_username }}{% endblock %}
|
|
</h5>
|
|
<div>
|
|
{% for member in members %}
|
|
{% include "_list_item.html" with item=member.item mark=member.mark hide_category=True %}
|
|
{% empty %}
|
|
<div>{% trans '无结果' %}</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% include "_pagination.html" %}
|
|
</div>
|
|
{% include "_sidebar.html" with show_profile=1 %}
|
|
</main>
|
|
{% include "_footer.html" %}
|
|
</body>
|
|
</html>
|