takahe/templates/base.html

79 wiersze
3.5 KiB
HTML
Czysty Zwykły widok Historia

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-13 23:14:38 +00:00
<script src="{% static "js/hyperscript.min.js" %}"></script>
<script src="{% static "js/htmx.min.js" %}"></script>
<style>
body {
--color-highlight: {{ config.highlight_color }};
}
</style>
2022-11-05 20:17:27 +00:00
{% block extra_head %}{% endblock %}
</head>
<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-06 02:10:39 +00:00
<img src="{% static "img/icon-128.png" %}" width="32">
{{ 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-17 04:12:28 +00:00
<i class="fa-solid fa-feather"></i> Compose
</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 00:43:00 +00:00
<i class="fa-solid fa-search"></i> Search
</a>
<a href="{% url "settings" %}" title="Settings" {% if top_section == "settings" %}class="selected"{% endif %}>
2022-11-17 04:12:28 +00:00
<i class="fa-solid fa-gear"></i> Settings
</a>
2022-11-13 06:21:52 +00:00
<div class="gap"></div>
<a href="/identity/select/" class="identity">
{% 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-17 15:21:42 +00:00
{% elif request.identity.icon %}
{{ request.identity.username }}
<img src="{{ request.identity.icon.url }}" title="{{ request.identity.handle }}">
{% elif request.identity.icon_uri %}
2022-11-17 15:21:42 +00:00
{{ request.identity.username }}
2022-11-13 06:21:52 +00:00
<img src="{{ request.identity.icon_uri }}" title="{{ request.identity.handle }}">
2022-11-06 02:10:39 +00:00
{% else %}
2022-11-17 15:21:42 +00:00
{{ request.identity.username }}
2022-11-13 06:21:52 +00:00
<img src="{% static "img/unknown-icon-128.png" %}" 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-13 06:21:52 +00:00
<a href="/auth/login/"><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 %}
<div class="columns">
<div class="left-column">
{% block content %}
{% endblock %}
</div>
<div class="right-column">
{% block right_content %}
2022-11-18 01:52:00 +00:00
{% include "activities/_menu.html" %}
2022-11-18 00:43:00 +00:00
{% endblock %}
</div>
</div>
2022-11-05 20:17:27 +00:00
{% endblock %}
</main>
</body>
</html>