fix: Remove custom.css by default
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
David Lapshin 2023-10-20 00:03:51 +00:00
parent bb7b4ead29
commit 61918353d4
Signed by: daudix
GPG key ID: 93ECF15D3053D81C
2 changed files with 6 additions and 4 deletions

View file

@ -14,10 +14,9 @@
<link href="{{ get_url(path='style.css') }}" rel="stylesheet" />
{% if config.extra.stylesheets %}
{% for stylesheet in config.extra.stylesheets %}
<link href="{{ get_url(path=stylesheet) }}" rel="stylesheet">
<link href="{{ get_url(path='stylesheet') }}" rel="stylesheet" />
{% endfor %}
{% endif %}
<link href="{{ get_url(path='custom.css') }}" rel="stylesheet" />
{% if config.extra.animated_favicon %}
<link rel="icon" type="image/gif" href="{{ get_url(path='favicon.gif') }}" />
@ -29,7 +28,10 @@
<!-- Open Graph -->
<meta property="og:site_name" content="{{ config.title }}" />
<meta property="og:title" content="{{ page.title | default(value=config.title) }}" />
<meta property="og:title" content="
{% if page.title %} {{ page.title }} - {{ config.title }}
{% elif section.title %} {{ section.title }} - {{ config.title }}
{% else %} {{ config.title }} {% endif %}" />
<meta property="og:url" content="{{ current_url | default(value='/') }}" />
<meta property="og:description" content="{{ page.description | default(value=config.description) }}" />
<meta property="og:image" content="{{ get_url(path='card.png') }}" />

View file

@ -6,7 +6,7 @@
<ul>
{% for link in config.extra.nav.links %}
<li>
<a href="{{link.url}}">{{link.name}}</a>
<a href="{{ link.url }}">{{ link.name }}</a>
</li>
{% endfor %}
{% if config.extra.nav.show_feed %}