mirror of
https://github.com/zaaarf/friendenstein.git
synced 2024-11-22 15:34:50 +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 %}
|
{% set url = config.base_url %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if title %}
|
{% if title %}
|
||||||
|
{% if title == config.title %}
|
||||||
<title>{{ title }}</title>
|
<title>{{ title }}</title>
|
||||||
|
{% else %}
|
||||||
|
<title>{{config.title }} :: {{ title }}</title>
|
||||||
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% block metatags %}
|
{% block metatags %}
|
||||||
{% if title %}
|
{% if title %}
|
||||||
|
@ -91,7 +95,7 @@
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% block css %}
|
{% block css %}
|
||||||
<link rel="stylesheet" href="{{ get_url(path='css/style.css', trailing_slash=false) | safe }}"/>
|
<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 %}
|
{% endblock css %}
|
||||||
<script>
|
<script>
|
||||||
const setTheme = (theme) => {
|
const setTheme = (theme) => {
|
||||||
|
|
|
@ -2,7 +2,11 @@
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<div class="home">
|
<div class="home">
|
||||||
|
{% if config.extra.home_title %}
|
||||||
|
<h1>{{ config.extra.home_title }}</h1>
|
||||||
|
{% else %}
|
||||||
<h1>{{ config.title }}</h1>
|
<h1>{{ config.title }}</h1>
|
||||||
|
{% endif %}
|
||||||
{% if config.extra.home_subtitle %}
|
{% if config.extra.home_subtitle %}
|
||||||
<p>{{ config.extra.home_subtitle }}</p>
|
<p>{{ config.extra.home_subtitle }}</p>
|
||||||
{% elif config.description %}
|
{% elif config.description %}
|
||||||
|
|
Loading…
Reference in a new issue