Header font for meta, dynamic title

This commit is contained in:
timvisee 2019-07-01 10:54:51 +02:00
parent 44c0e2259a
commit 159ee5fdce
No known key found for this signature in database
GPG Key ID: B8DB720BC383E172
2 changed files with 14 additions and 1 deletions

View File

@ -150,6 +150,9 @@ content > #{headings(1,6)} {
content .muted {
color: darken($dark-text, 25%);
}
content .meta {
font-family: "Zilla Slab", "Open Sans", X-LocaleSpecific, sans-serif;
}
sidebar {
width: 20em;

View File

@ -10,7 +10,17 @@
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{% block title %}{{ config.title }}{% endblock title %}</title>
<title>
{% block title %}
{% if page.title %}
{{ page.title }} &middot;
{% endif %}
{% if section.title %}
{{ section.title }} &middot;
{% endif %}
{{ config.title }}
{% endblock title %}
</title>
{% block css %}
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,700|Zilla+Slab:400,700|Merriweather:400,400i,700,700i&display=swap" rel="stylesheet">