WhisperMaPhone/thoughts/templates/thoughts/page.html

64 lines
1.7 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{% block title %}{% endblock %}</title>
{% load static %}
<link href="{% static 'thoughts/main.css' %}" rel="stylesheet">
<meta content="thoughts.learnerpages.com" property="og:site_name">
{% block head %}{% endblock %}
<link rel="icon" type="image/png" href="{% static 'images/favicon.png' %}">
<link rel="icon" type="image/svg+xml" href="{% static 'images/favicon.svg' %}">
<link rel="apple-touch-icon" href="{% static 'images/apple-touch-icon.png'%}"/>
<style>
/*Semantic styles load as part of the page*/
.hidden {
display: none;
}
:root {
--background-color: {{ settings.COLORS.0 }};
--text-color: {{ settings.COLORS.1 }};
--accent-color: {{ settings.COLORS.2 }};
}
{% if settings.COLORS.3 %}
@media (prefers-color-scheme: dark) {
:root {
--background-color: {{ settings.COLORS.3 }};
--text-color: {{ settings.COLORS.4 }};
--accent-color: {{ settings.COLORS.5 }};
}
}
{% endif %}
</style>
</head>
<body>
<div id="main-wrap">
<main id="main-content">
<header id="main-header">
<h1>
<a class="text" href="/">Thoughts</a>
</h1>
<div id="header-right">
{% block headerright %}
{% endblock %}
</div>
</header>
{% block main %}
{% endblock %}
</main>
</div>
{% block scripts %}
{% endblock %}
</body>
</html>