mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-29 02:31:00 +00:00
66 lines
3.1 KiB
HTML
66 lines
3.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<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" />
|
|
<link rel="shortcut icon" href="{{ config.site_icon }}">
|
|
<script src="{% static "js/hyperscript.min.js" %}"></script>
|
|
<script src="{% static "js/htmx.min.js" %}"></script>
|
|
<script src="{% static "js/takahe.min.js" %}"></script>
|
|
<style>
|
|
body, body.light-theme {
|
|
--color-highlight: {{ config.highlight_color }};
|
|
--color-text-link: {{ config.highlight_color }};
|
|
}
|
|
{% if not config_identity.visible_reaction_counts %}
|
|
.like-count {
|
|
display: none;
|
|
}
|
|
{% endif %}
|
|
</style>
|
|
{% if config_identity.custom_css %}
|
|
<style>{{ config_identity.custom_css|safe }}</style>
|
|
{% endif %}
|
|
{% block opengraph %}
|
|
{% include "_opengraph.html" with opengraph_local=opengraph_defaults %}
|
|
{% endblock %}
|
|
{% block extra_head %}{% endblock %}
|
|
{% block custom_head %}{% if config.custom_head %}{{ config.custom_head|safe }}{% endif %}{% endblock %}
|
|
</head>
|
|
<body class="{% if config_identity.light_theme %}light-theme {% endif %}{% block body_class %}{% endblock %}" hx-headers='{"X-CSRFToken": "{{ csrf_token }}"}'>
|
|
<a id="skip-to-main" class="screenreader-text" href="#main-content">Skip to Content</a>
|
|
<a id="skip-to-nav" class="screenreader-text" href="#side-navigation">Skip to Navigation</a>
|
|
<main>
|
|
{% block body_main %}
|
|
<header>
|
|
<menu>
|
|
<a class="logo" href="/">
|
|
<img src="{{ config.site_icon }}" width="32">
|
|
{{ config.site_name }}
|
|
</a>
|
|
{% if user.is_authenticated %}
|
|
<a href="/" title="My Account"><i class="fa-solid fa-user"></i></a>
|
|
{% else %}
|
|
<a href="{% url "login" %}" title="Login"><i class="fa-solid fa-right-to-bracket"></i></a>
|
|
{% endif %}
|
|
<a href="/settings" title="Settings"><i class="fa-solid fa-gear"></i></a>
|
|
<a href="/admin" title="Administration"><i class="fa-solid fa-screwdriver-wrench"></i></a>
|
|
</menu>
|
|
</header>
|
|
|
|
{% block content %}
|
|
{% endblock %}
|
|
{% endblock %}
|
|
</main>
|
|
|
|
{% block footer %}
|
|
{% include "_footer.html" %}
|
|
{% endblock %}
|
|
|
|
</body>
|
|
</html>
|