fix: actually fix the cursor

This commit is contained in:
zaaarf 2023-12-22 02:37:07 +01:00
parent 5ae321cc12
commit 1917465ec9
No known key found for this signature in database
GPG key ID: 102E445F4C3F829B
2 changed files with 9 additions and 1 deletions

View file

@ -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) => {

View file

@ -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 %}