fix: Remove custom.css by default
This commit is contained in:
@ -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') }}" />
|
||||
|
Reference in New Issue
Block a user