37 lines
1.1 KiB
HTML
37 lines
1.1 KiB
HTML
{% load static %}
|
|
{% load i18n %}
|
|
{% load l10n %}
|
|
{% load mastodon %}
|
|
{% load thumb %}
|
|
{% get_current_language as LANGUAGE_CODE %}
|
|
<!DOCTYPE html>
|
|
<html lang="{{ LANGUAGE_CODE }}" class="classic-page">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
{% block title %}<title>{{ site_name }} - {{ identity.display_name }}</title>{% endblock %}
|
|
{% include "common_libs.html" %}
|
|
</head>
|
|
<body>
|
|
{% include "_header.html" %}
|
|
<main>
|
|
<div class="grid__main">
|
|
<h5>
|
|
{% block head %}{{ identity.display_name }}{% endblock %}
|
|
</h5>
|
|
<div>
|
|
{% for member in members %}
|
|
{% include "_list_item.html" with item=member.item mark=member.mark hide_category=True %}
|
|
{% empty %}
|
|
<div>{% trans 'nothing so far.' %}</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% include "_pagination.html" %}
|
|
</div>
|
|
{% block sidebar %}
|
|
{% include "_sidebar.html" with show_profile=1 %}
|
|
{% endblock %}
|
|
</main>
|
|
{% include "_footer.html" %}
|
|
</body>
|
|
</html>
|