115 lines
4.6 KiB
HTML
115 lines
4.6 KiB
HTML
|
|
<!doctype html>
|
|
<html data-bs-theme="light">
|
|
<head>
|
|
{% set base = "" %}
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta charset="UTF-8">
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.6/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-4Q6Gf2aSP4eDXB8Miphtr37CMZZQ5oXLH2yaXMJ2w8e2ZtHTl7GptT4jmndRuHDT" crossorigin="anonymous">
|
|
<title>{{ page_title }}</title>
|
|
<style>
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
|
|
"Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
|
|
"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
}
|
|
.top_header {
|
|
position: relative;
|
|
height: 200px;
|
|
background: rgb(70, 70, 124);
|
|
background-image: url("{{ parent_path }}static/header.jpg");
|
|
background-size: cover;
|
|
background-position: center;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
text-align: center;
|
|
}
|
|
|
|
.top_header_text {
|
|
position: absolute;
|
|
bottom: 10px;
|
|
left: 10px;
|
|
color: white;
|
|
font-weight: bold;
|
|
font-size: 2.5rem;
|
|
background: rgba(0, 0, 0, 0.05);
|
|
border-radius: 5px;
|
|
padding: 10px 20px;
|
|
border-radius: 10px;
|
|
}
|
|
/*
|
|
@media (min-width: 768px) {
|
|
.top_header_text {
|
|
font-size: 4rem;
|
|
}
|
|
}
|
|
*/
|
|
article {
|
|
font-size: 1.1rem;
|
|
line-height: 1.6;
|
|
}
|
|
</style>
|
|
{% block head_includes %}
|
|
{% endblock %}
|
|
|
|
</head>
|
|
<body>
|
|
<div class="top_header">
|
|
<div class="col-auto">
|
|
<h1 class="top_header_text"><a style="border-radius: 5px; padding: 10px; opacity: 0.7; background: black">{{ page_title }}</a></h1>
|
|
</div>
|
|
</div>
|
|
<div class="row justify-content-end pe-2 py-2" >
|
|
<div class="col-auto fw-bold">
|
|
<a class="link-body-emphasis mx-2 text-decoration-none" href="{{ parent_path }}index.html">Home</a>
|
|
<a class="link-body-emphasis mx-2 text-decoration-none" id="categories_toggle" href="#none">Categories</a>
|
|
<a class="link-body-emphasis mx-2 text-decoration-none" href="{{ parent_path }}static/about.html">About</a>
|
|
<a class="link-body-emphasis mx-2 text-decoration-none" id="dark_theme_toggle" href="#none">🌓︎</a>
|
|
</div>
|
|
</div>
|
|
<div id="categories_container" class="container">
|
|
<div id="categories_menu" class="row justify-content-center mx-auto mb-2" style="display: none">
|
|
{% for category in categories %}
|
|
<a href="{{ parent_path }}categories/{{ category }}.html" class="mx-1 text-decoration-none">{{ category }}</a>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
|
|
<div id="content" class="container-fluid mb-2">
|
|
{% block content %}
|
|
{% endblock %}
|
|
</div>
|
|
<div id="footer" class="container-fluid">
|
|
<div id="footer-data" class="row my-1">
|
|
{% block footer_includes %}
|
|
{% endblock %}
|
|
</div>
|
|
<div class="row small d-flex text-muted justify-content-end">
|
|
<div class="col-auto" style="font-size: 0.75rem;">
|
|
<p>Page created with <a class="text-decoration-none" href="#microgen">microgen</a></p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.8/dist/umd/popper.min.js" integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r" crossorigin="anonymous"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.6/dist/js/bootstrap.min.js" integrity="sha384-RuyvpeZCxMJCqVUGFI0Do1mQrods/hhxYlcVfGPOfQtPJh0JCw12tUAZ/Mv10S7D" crossorigin="anonymous"></script>
|
|
<script defer>
|
|
const saved_color_theme = localStorage.getItem('saved_color_theme');
|
|
if (saved_color_theme) {
|
|
document.documentElement.setAttribute('data-bs-theme', saved_color_theme);
|
|
}
|
|
|
|
document.getElementById("categories_toggle").onclick = function() {
|
|
categories_menu_item = document.getElementById("categories_menu");
|
|
categories_menu_item.style.display = categories_menu_item.style.display === "none" ? "block" : "none"
|
|
};
|
|
document.getElementById("dark_theme_toggle").onclick = function() {
|
|
html = document.documentElement;
|
|
current_color_theme = html.getAttribute('data-bs-theme');
|
|
new_color_theme = current_color_theme === 'dark' ? 'light' : 'dark';
|
|
html.setAttribute('data-bs-theme', new_color_theme);
|
|
localStorage.setItem('saved_color_theme', new_color_theme);
|
|
}
|
|
</script>
|
|
</body>
|