mirror of
https://github.com/zaaarf/friendenstein.git
synced 2024-11-12 18:49:22 +01:00
fix: actually fix the cursor
This commit is contained in:
parent
5ae321cc12
commit
1917465ec9
2 changed files with 9 additions and 1 deletions
|
@ -39,7 +39,11 @@
|
|||
{% set url = config.base_url %}
|
||||
{% endif %}
|
||||
{% if title %}
|
||||
{% if title == config.title %}
|
||||
<title>{{ title }}</title>
|
||||
{% else %}
|
||||
<title>{{config.title }} :: {{ title }}</title>
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
{% block metatags %}
|
||||
{% if title %}
|
||||
|
@ -91,7 +95,7 @@
|
|||
{% endif %}
|
||||
{% block css %}
|
||||
<link rel="stylesheet" href="{{ get_url(path='css/style.css', trailing_slash=false) | safe }}"/>
|
||||
<link rel="stylesheet" href="logo.css"/>
|
||||
<link rel="stylesheet" href="{{ get_url(path='logo.css', trailing_slash=false) | safe }}"/>
|
||||
{% endblock css %}
|
||||
<script>
|
||||
const setTheme = (theme) => {
|
||||
|
|
|
@ -2,7 +2,11 @@
|
|||
|
||||
{% block content %}
|
||||
<div class="home">
|
||||
{% if config.extra.home_title %}
|
||||
<h1>{{ config.extra.home_title }}</h1>
|
||||
{% else %}
|
||||
<h1>{{ config.title }}</h1>
|
||||
{% endif %}
|
||||
{% if config.extra.home_subtitle %}
|
||||
<p>{{ config.extra.home_subtitle }}</p>
|
||||
{% elif config.description %}
|
||||
|
|
Loading…
Reference in a new issue