Compare commits

..

No commits in common. "6cceafb21bc1bd519bc6111aeba7ad372f3e9037" and "3c7881f4afb76b374d36c108f571e02ad71261bd" have entirely different histories.

6 changed files with 5 additions and 22 deletions

View file

@ -9,10 +9,6 @@ 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;
@ -26,6 +22,10 @@ a:visited {
a { a {
color: hsl(217, 71%, 70%); color: hsl(217, 71%, 70%);
} }
.lightbox a.delete {
color: $light;
}
} }
.lightbox { .lightbox {

View file

@ -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>{% block title %}{% endblock title %}</title> <title>{{ config.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 %}

View file

@ -1,9 +1,5 @@
{% 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>

View file

@ -1,9 +1,5 @@
{% 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">

View file

@ -1,10 +1,5 @@
{% 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>

View file

@ -1,9 +1,5 @@
{% 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>