2022-11-05 20:17:27 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>{% block title %}{% endblock %} - {{ config.site_name }}</title>
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
{% load static %}
|
|
|
|
<link rel="stylesheet" href="{% static "css/style.css" %}" type="text/css" media="screen" />
|
|
|
|
<link rel="stylesheet" href="{% static "fonts/raleway/raleway.css" %}" type="text/css" />
|
|
|
|
<link rel="stylesheet" href="{% static "fonts/font_awesome/all.min.css" %}" type="text/css" />
|
2022-11-16 13:53:39 +00:00
|
|
|
<link rel="manifest" href="/manifest.json" />
|
2022-11-23 23:15:00 +00:00
|
|
|
<link rel="shortcut icon" href="{{ config.site_icon }}">
|
2022-11-13 23:14:38 +00:00
|
|
|
<script src="{% static "js/hyperscript.min.js" %}"></script>
|
2022-11-16 01:30:30 +00:00
|
|
|
<script src="{% static "js/htmx.min.js" %}"></script>
|
2022-11-17 00:23:46 +00:00
|
|
|
<style>
|
|
|
|
body {
|
|
|
|
--color-highlight: {{ config.highlight_color }};
|
|
|
|
}
|
|
|
|
</style>
|
2022-11-05 20:17:27 +00:00
|
|
|
{% block extra_head %}{% endblock %}
|
|
|
|
</head>
|
2022-11-16 01:30:30 +00:00
|
|
|
<body class="{% block body_class %}{% endblock %}" hx-headers='{"X-CSRFToken": "{{ csrf_token }}"}'>
|
2022-11-05 20:17:27 +00:00
|
|
|
|
2022-11-13 06:21:52 +00:00
|
|
|
<main>
|
|
|
|
<header>
|
|
|
|
<a class="logo" href="/">
|
2022-11-18 02:21:00 +00:00
|
|
|
<img src="{{ config.site_icon }}" width="32">
|
2022-11-06 02:10:39 +00:00
|
|
|
{{ config.site_name }}
|
|
|
|
</a>
|
2022-11-13 06:21:52 +00:00
|
|
|
<menu>
|
2022-11-05 20:17:27 +00:00
|
|
|
{% if user.is_authenticated %}
|
2022-11-18 01:52:00 +00:00
|
|
|
<a href="{% url "compose" %}" title="Compose" {% if top_section == "compose" %}class="selected"{% endif %}>
|
2022-11-18 02:21:00 +00:00
|
|
|
<i class="fa-solid fa-feather"></i>
|
2022-11-17 04:12:28 +00:00
|
|
|
</a>
|
2022-11-18 01:52:00 +00:00
|
|
|
<a href="{% url "search" %}" title="Search" {% if top_section == "search" %}class="selected"{% endif %}>
|
2022-11-18 02:21:00 +00:00
|
|
|
<i class="fa-solid fa-search"></i>
|
2022-11-18 00:43:00 +00:00
|
|
|
</a>
|
2022-11-23 02:21:01 +00:00
|
|
|
{% if allows_refresh %}
|
2022-11-23 02:55:34 +00:00
|
|
|
<a href="." title="Refresh" hx-get="." hx-select=".left-column" hx-target=".left-column" hx-swap="outerHTML" hx-trigger="click, every 120s">
|
2022-11-23 02:21:01 +00:00
|
|
|
<i class="fa-solid fa-rotate"></i>
|
|
|
|
</a>
|
|
|
|
{% endif %}
|
2022-11-13 06:21:52 +00:00
|
|
|
<div class="gap"></div>
|
|
|
|
<a href="/identity/select/" class="identity">
|
2022-11-06 20:48:04 +00:00
|
|
|
{% if not request.identity %}
|
2022-11-13 06:21:52 +00:00
|
|
|
No Identity
|
|
|
|
<img src="{% static "img/unknown-icon-128.png" %}" title="No identity selected">
|
2022-11-06 02:10:39 +00:00
|
|
|
{% else %}
|
2022-11-17 15:21:42 +00:00
|
|
|
{{ request.identity.username }}
|
2022-11-18 02:21:00 +00:00
|
|
|
<img src="{{ request.identity.local_icon_url }}" title="{{ request.identity.handle }}">
|
2022-11-06 02:10:39 +00:00
|
|
|
{% endif %}
|
|
|
|
</a>
|
2022-11-05 20:17:27 +00:00
|
|
|
{% else %}
|
2022-11-18 02:21:00 +00:00
|
|
|
<div class="gap"></div>
|
|
|
|
<a href="/auth/login/" class="identity"><i class="fa-solid fa-right-to-bracket"></i> Login</a>
|
2022-11-05 20:17:27 +00:00
|
|
|
{% endif %}
|
2022-11-13 06:21:52 +00:00
|
|
|
</menu>
|
|
|
|
</header>
|
2022-11-05 20:17:27 +00:00
|
|
|
|
2022-11-18 00:43:00 +00:00
|
|
|
{% block full_content %}
|
2022-11-18 02:21:00 +00:00
|
|
|
{% block pre_content %}
|
|
|
|
{% endblock %}
|
|
|
|
<div class="columns">
|
|
|
|
<div class="left-column">
|
|
|
|
{% block content %}
|
|
|
|
{% endblock %}
|
|
|
|
</div>
|
|
|
|
<div class="right-column">
|
|
|
|
{% block right_content %}
|
|
|
|
{% include "activities/_menu.html" %}
|
|
|
|
{% endblock %}
|
|
|
|
</div>
|
2022-11-18 00:43:00 +00:00
|
|
|
</div>
|
2022-11-05 20:17:27 +00:00
|
|
|
{% endblock %}
|
|
|
|
</main>
|
|
|
|
|
2022-11-18 02:21:00 +00:00
|
|
|
<footer>
|
2022-11-21 03:53:28 +00:00
|
|
|
<span>Powered by <a href="https://jointakahe.org">Takahē {{ config.version }}</a></span>
|
2022-11-18 02:21:00 +00:00
|
|
|
</footer>
|
|
|
|
|
2022-11-05 20:17:27 +00:00
|
|
|
</body>
|
|
|
|
</html>
|