Skip to content

Commit 4e96705

Browse files
committed
Fix Gitzilla: remove | safe filter from logo/favicon, fix CSS extra brace
1 parent bf58012 commit 4e96705

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

templates/base.html

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
<title>{% if title and title != site_name %}{{ title }} - {% endif %}{{ site_name }}</title>
77
{% if site_description %}<meta name="description" content="{{ site_description }}">{% endif %}
88
<meta name="generator" content="Blog Platform">
9-
{% if favicon_url %}<link rel="icon" type="image/x-icon" href="{{ favicon_url | safe }}">{% endif %}
10-
{% if logo_url %}<link rel="icon" type="image/png" href="{{ logo_url | safe }}">{% endif %}
9+
{% if favicon_url %}<link rel="icon" type="image/x-icon" href="{{ favicon_url }}">{% endif %}
10+
{% if logo_url %}<link rel="icon" type="image/png" href="{{ logo_url }}">{% endif %}
1111
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
1212
<link rel="canonical" href="{{ url | default('/') | safe }}">
1313

@@ -162,7 +162,6 @@
162162
text-overflow: ellipsis;
163163
white-space: nowrap;
164164
}
165-
}
166165
</style>
167166
</head>
168167
<body>

0 commit comments

Comments
 (0)