Fix page titles
This commit is contained in:
parent
065ca39cd6
commit
951086fe7a
62
static/main.css
Normal file
62
static/main.css
Normal file
@ -0,0 +1,62 @@
|
|||||||
|
#favicon {
|
||||||
|
width: 2.5em;
|
||||||
|
height: 2.5em;
|
||||||
|
margin-right: 0.25em;
|
||||||
|
}
|
||||||
|
|
||||||
|
#header {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
article {
|
||||||
|
max-width: 45em;
|
||||||
|
}
|
||||||
|
|
||||||
|
main {
|
||||||
|
max-width: 60em;
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
background-color: #d6cebf;
|
||||||
|
border: 0.3em outset gold;
|
||||||
|
border-radius: 1em;
|
||||||
|
padding: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
#hero-img {
|
||||||
|
width: 30em;
|
||||||
|
padding: 3em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fancy-name, .code {
|
||||||
|
font-family: monospace;
|
||||||
|
}
|
||||||
|
|
||||||
|
.entry-footer {
|
||||||
|
margin-top: 1em;
|
||||||
|
border-top: 1px solid #005e75;
|
||||||
|
padding-top: 0.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media print {
|
||||||
|
body {
|
||||||
|
background-color: white;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (prefers-color-scheme: dark) {
|
||||||
|
html {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #000;
|
||||||
|
}
|
||||||
|
a {
|
||||||
|
color: #aaf;
|
||||||
|
}
|
||||||
|
a:visited {
|
||||||
|
color: #faf;
|
||||||
|
}
|
||||||
|
main {
|
||||||
|
background-color: #222;
|
||||||
|
}
|
||||||
|
}
|
@ -1,7 +1,7 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
{% block html_tag %} {% endblock %}
|
{% block html_tag %} {% endblock %}
|
||||||
<head>
|
<head>
|
||||||
<title>FliegendeWurst's corner of the WWW</title>
|
<title>{% block title %} {% endblock %}</title>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<link rel="shortcut icon" href="/favicon.ico">
|
<link rel="shortcut icon" href="/favicon.ico">
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
{% block html_tag %}
|
{% block html_tag %}
|
||||||
<html itemscope itemtype="https://schema.org/ItemPage" lang="en-US">
|
<html itemscope itemtype="https://schema.org/ItemPage" lang="en-US">
|
||||||
{% endblock html_tag %}
|
{% endblock html_tag %}
|
||||||
|
{% block title %}{{page.title}}{% endblock title %}
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<article itemid="https://fliegendewurst.eu/blog/{{page.slug}}.html" itemprop="https://schema.org/mainEntity" itemscope itemtype="https://schema.org/BlogPosting">
|
<article itemid="https://fliegendewurst.eu/blog/{{page.slug}}.html" itemprop="https://schema.org/mainEntity" itemscope itemtype="https://schema.org/BlogPosting">
|
||||||
<h2 class="title">
|
<h2 class="title">
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
{% block html_tag %}
|
{% block html_tag %}
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
{% endblock html_tag %}
|
{% endblock html_tag %}
|
||||||
|
{% block title %}FliegendeWurst's blog posts{% endblock title %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<h1 class="title">
|
<h1 class="title">
|
||||||
|
@ -4,6 +4,8 @@
|
|||||||
<html lang="en">
|
<html lang="en">
|
||||||
{% endblock html_tag %}
|
{% endblock html_tag %}
|
||||||
|
|
||||||
|
{% block title %}FliegendeWurst's corner of the WWW{% endblock title %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<span>Posts</span>
|
<span>Posts</span>
|
||||||
<ul>
|
<ul>
|
||||||
|
Loading…
Reference in New Issue
Block a user