2023-09-09 19:20:39 +02:00
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta content="IE=edge" http-equiv="X-UA-Compatible"/>
|
|
|
|
<meta content="text/html; charset=UTF-8" http-equiv="content-type"/>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
|
|
|
|
<meta name="robots" content="index, follow">
|
|
|
|
{% if page.title %}
|
|
|
|
{% set title = page.title %}
|
|
|
|
{% elif section.title %}
|
|
|
|
{% set title = section.title %}
|
|
|
|
{% elif config.title %}
|
|
|
|
{% set title = config.title %}
|
|
|
|
{% endif %}
|
|
|
|
{% if page.extra.author %}
|
|
|
|
{% set author = page.extra.author %}
|
|
|
|
{% elif section.extra.author %}
|
|
|
|
{% set author = section.extra.author %}
|
|
|
|
{% elif config.extra.author %}
|
|
|
|
{% set author = config.extra.author %}
|
|
|
|
{% endif %}
|
|
|
|
{% if page.description %}
|
|
|
|
{% set description = page.description | truncate(length=150) %}
|
|
|
|
{% elif section.description %}
|
|
|
|
{% set description = section.description | truncate(length=150) %}
|
|
|
|
{% elif config.description %}
|
|
|
|
{% set description = config.description | truncate(length=150) %}
|
|
|
|
{% endif %}
|
|
|
|
{% if page.extra.image %}
|
|
|
|
{% set image = get_url(path=page.extra.image, trailing_slash=false) %}
|
|
|
|
{% elif section.extra.image %}
|
|
|
|
{% set image = get_url(path=section.extra.image, trailing_slash=false) %}
|
|
|
|
{% elif config.extra.favicon %}
|
|
|
|
{% set image = get_url(path=config.extra.favicon, trailing_slash=false) %}
|
|
|
|
{% endif %}
|
|
|
|
{% if page.permalink %}
|
|
|
|
{% set url = page.permalink %}
|
|
|
|
{% elif section.permalink %}
|
|
|
|
{% set url = section.permalink %}
|
|
|
|
{% elif config.base_url %}
|
|
|
|
{% set url = config.base_url %}
|
|
|
|
{% endif %}
|
|
|
|
{% if title %}
|
2023-12-22 02:37:07 +01:00
|
|
|
{% if title == config.title %}
|
2023-12-22 23:46:12 +01:00
|
|
|
<title>{{ title }} :: Home</title>
|
2023-12-22 02:37:07 +01:00
|
|
|
{% else %}
|
|
|
|
<title>{{config.title }} :: {{ title }}</title>
|
|
|
|
{% endif %}
|
2023-09-09 19:20:39 +02:00
|
|
|
{% endif %}
|
|
|
|
{% block metatags %}
|
|
|
|
{% if title %}
|
|
|
|
<meta name="title" content="{{ title }}">
|
|
|
|
{% endif %}
|
|
|
|
{% if author %}
|
|
|
|
<meta name="author" content="{{ author }}">
|
|
|
|
{% endif %}
|
|
|
|
{% if description %}
|
|
|
|
<meta name="description" content="{{ description }}">
|
|
|
|
{% endif %}
|
|
|
|
<meta property="og:type" content="website">
|
|
|
|
<meta property="og:url" content="{{ url | safe }}">
|
|
|
|
{% if title %}
|
|
|
|
<meta property="og:site_name" content="{{ config.title }}">
|
|
|
|
{% endif %}
|
|
|
|
{% if title %}
|
|
|
|
<meta property="og:title" content="{{ title }}">
|
|
|
|
{% endif %}
|
|
|
|
{% if description %}
|
|
|
|
<meta property="og:description" content="{{ description }}">
|
|
|
|
{% endif %}
|
|
|
|
{% if image %}
|
|
|
|
<meta property="og:image" content="{{ image }}">
|
|
|
|
{% endif %}
|
|
|
|
{% set twitter_card = config.extra.twitter_card | default(value=true) %}
|
|
|
|
{% if twitter_card != false %}
|
|
|
|
<meta property="twitter:card" content="summary_large_image">
|
|
|
|
<meta property="twitter:url" content="{{ url | safe }}">
|
|
|
|
{% if title %}
|
|
|
|
<meta property="twitter:title" content="{{ title }}">
|
|
|
|
{% endif %}
|
|
|
|
{% if description %}
|
|
|
|
<meta property="twitter:description" content="{{ description }}">
|
|
|
|
{% endif %}
|
|
|
|
{% if image %}
|
|
|
|
<meta property="twitter:image" content="{{ image }}">
|
|
|
|
{% endif %}
|
|
|
|
{% endif %}
|
|
|
|
<link rel="canonical" href="{{ url | safe }}">
|
|
|
|
{% if image %}
|
|
|
|
<link rel="shortcut icon" type="image/x-icon" href="{{ get_url(path=config.extra.favicon, trailing_slash=false) }}">
|
|
|
|
{% endif %}
|
2023-12-22 12:19:19 +01:00
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
2023-09-09 19:20:39 +02:00
|
|
|
{% endblock metatags %}
|
|
|
|
{% if config.generate_feed %}
|
|
|
|
{% block feed %}
|
|
|
|
<link rel="alternate" type="application/atom+xml" title="RSS" href="{{ get_url(path="atom.xml", trailing_slash=false) }}">
|
|
|
|
{% endblock feed %}
|
|
|
|
{% endif %}
|
|
|
|
{% block css %}
|
2023-12-24 19:09:35 +01:00
|
|
|
<style>
|
|
|
|
:root,
|
|
|
|
:root.dark {
|
|
|
|
--bgColor: {% if config.extra.colors.dark.background_color %}{{ config.extra.colors.dark.background_color }}{% else %}#222529{% endif %};
|
|
|
|
--fgColor: {% if config.extra.colors.dark.foreground_color %}{{ config.extra.colors.dark.foreground_color }}{% else %}#D6D6D6{% endif %};
|
|
|
|
--metaColor: {% if config.extra.colors.dark.meta_color %}{{ config.extra.colors.dark.meta_color }}{% else %}#78B6AD{% endif %};
|
|
|
|
--linkColor: {% if config.extra.colors.dark.link_color %}{{ config.extra.colors.dark.link_color }}{% else %}#DBD5BC{% endif %};
|
|
|
|
--dateLinkColor: {% if config.extra.colors.dark.date_link_color %}{{ config.extra.colors.dark.date_link_color }}{% else %}#6F6847{% endif %};
|
2023-12-25 00:41:54 +01:00
|
|
|
--codeLineColor: {% if config.extra.colors.dark.code_line_color %}{{ config.extra.colors.dark.code_line_color }}{% else %}#31333d{% endif %};
|
2023-12-24 19:09:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
:root.light {
|
|
|
|
--bgColor: {% if config.extra.colors.light.background_color %}{{ config.extra.colors.light.background_color }}{% else %}#EEEEEE{% endif %};
|
|
|
|
--fgColor: {% if config.extra.colors.light.foreground_color %}{{ config.extra.colors.light.foreground_color }}{% else %}#41474E{% endif %};
|
|
|
|
--metaColor: {% if config.extra.colors.light.meta_color %}{{ config.extra.colors.light.meta_color }}{% else %}#D26878{% endif %};
|
|
|
|
--linkColor: {% if config.extra.colors.light.link_color %}{{ config.extra.colors.light.link_color }}{% else %}#5690AF{% endif %};
|
|
|
|
--dateLinkColor: {% if config.extra.colors.light.date_link_color %}{{ config.extra.colors.light.date_link_color }}{% else %}#223844{% endif %};
|
2023-12-25 00:41:54 +01:00
|
|
|
--codeLineColor: {% if config.extra.colors.light.code_line_color %}{{ config.extra.colors.light.code_line_color }}{% else %}#CCCCCC{% endif %};
|
2023-12-24 19:09:35 +01:00
|
|
|
}
|
|
|
|
</style>
|
2023-12-24 18:29:23 +01:00
|
|
|
<link rel="stylesheet" href="{{ get_url(path='style.css', trailing_slash=false) | safe }}"/>
|
2023-10-06 00:02:23 +02:00
|
|
|
{% endblock css %}
|
2023-12-22 01:07:32 +01:00
|
|
|
<script>
|
|
|
|
const setTheme = (theme) => {
|
|
|
|
document.documentElement.className = theme;
|
|
|
|
localStorage.setItem('theme', theme);
|
|
|
|
}
|
|
|
|
|
|
|
|
const hasCodeRun = localStorage.getItem('hasCodeRun');
|
|
|
|
|
|
|
|
if (!hasCodeRun) {
|
|
|
|
const defaultTheme = "{{ config.extra.default_theme }}";
|
|
|
|
setTheme(defaultTheme);
|
|
|
|
localStorage.setItem('hasCodeRun', 'true');
|
|
|
|
}
|
|
|
|
|
|
|
|
const getTheme = () => {
|
|
|
|
const theme = localStorage.getItem('theme');
|
|
|
|
if (theme) {
|
|
|
|
setTheme(theme);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
getTheme();
|
|
|
|
</script>
|
2023-11-08 00:19:50 +01:00
|
|
|
|