Compare commits
3 commits
3c7881f4af
...
6cceafb21b
Author | SHA1 | Date | |
---|---|---|---|
6cceafb21b | |||
f71e947586 | |||
520b59c048 |
6 changed files with 22 additions and 5 deletions
|
@ -9,6 +9,10 @@ html, .navbar, .footer {
|
||||||
padding-bottom: 0;
|
padding-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
a:visited {
|
||||||
|
color: hsl(280, 100%, 50%);
|
||||||
|
}
|
||||||
|
|
||||||
@media (prefers-color-scheme: dark) {
|
@media (prefers-color-scheme: dark) {
|
||||||
html, .navbar, .footer, p, strong, .title, li {
|
html, .navbar, .footer, p, strong, .title, li {
|
||||||
background-color: $dark;
|
background-color: $dark;
|
||||||
|
@ -22,10 +26,6 @@ html, .navbar, .footer {
|
||||||
a {
|
a {
|
||||||
color: hsl(217, 71%, 70%);
|
color: hsl(217, 71%, 70%);
|
||||||
}
|
}
|
||||||
|
|
||||||
.lightbox a.delete {
|
|
||||||
color: $light;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.lightbox {
|
.lightbox {
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<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">
|
||||||
<meta name="description" content="{{ config.description }}">
|
<meta name="description" content="{{ config.description }}">
|
||||||
<title>{{ config.title }}</title>
|
<title>{% block title %}{% endblock title %}</title>
|
||||||
<link href="{{ config.base_url | safe}}/style.css" rel="stylesheet">
|
<link href="{{ config.base_url | safe}}/style.css" rel="stylesheet">
|
||||||
<link rel="icon" href="/favicon.png" type="image/png" sizes="16x16">
|
<link rel="icon" href="/favicon.png" type="image/png" sizes="16x16">
|
||||||
{% if config.generate_feed %}
|
{% if config.generate_feed %}
|
||||||
|
|
|
@ -1,5 +1,9 @@
|
||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
|
|
||||||
|
{% block title %}
|
||||||
|
{{ config.title }} - {{ page.title }}
|
||||||
|
{% endblock title %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<h1 class="title">{{ config.title }}</h1>
|
<h1 class="title">{{ config.title }}</h1>
|
||||||
<h2 class="subtitle">{{ page.title }}</h2>
|
<h2 class="subtitle">{{ page.title }}</h2>
|
||||||
|
|
|
@ -1,5 +1,9 @@
|
||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
|
|
||||||
|
{% block title %}
|
||||||
|
{{ config.title }}
|
||||||
|
{% endblock title %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<h1 class="title">{{ config.title }}</h1>
|
<h1 class="title">{{ config.title }}</h1>
|
||||||
<div class="content">
|
<div class="content">
|
||||||
|
|
|
@ -1,5 +1,10 @@
|
||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
|
|
||||||
|
{% block title %}
|
||||||
|
{% set section = get_section(path=page.ancestors | last) %}
|
||||||
|
{{ config.title }} - {{ section.title }} - {{ page.title }}: {{ page.date }}
|
||||||
|
{% endblock title %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
{% set section = get_section(path=page.ancestors | last) %}
|
{% set section = get_section(path=page.ancestors | last) %}
|
||||||
<h1 class="title">{{ config.title }}</h1>
|
<h1 class="title">{{ config.title }}</h1>
|
||||||
|
|
|
@ -1,5 +1,9 @@
|
||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
|
|
||||||
|
{% block title %}
|
||||||
|
{{ config.title }} - {{ section.title }}
|
||||||
|
{% endblock title %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<h1 class="title">{{ config.title }}</h1>
|
<h1 class="title">{{ config.title }}</h1>
|
||||||
<h2 class="subtitle">{{ section.title }}</h2>
|
<h2 class="subtitle">{{ section.title }}</h2>
|
||||||
|
|
Loading…
Reference in a new issue