Fixed HTML Entities in titles [#2028]

This commit is contained in:
Matias Griese
2021-02-08 19:38:52 +02:00
parent 9118dbee84
commit d757a36b8c
2 changed files with 2 additions and 1 deletions

View File

@@ -5,6 +5,7 @@
* List field: added new `placement` property to decide wether to add new items at the top, bottom or based on the *position* of the clicked button [#2055](https://github.com/getgrav/grav-plugin-admin/pull/2055)
1. [](#bugfix)
* Fixed case-sensitive `accept` in `filepicker` field
* Fixed HTML Entities in titles [#2028]
# v1.10.3
## 02/01/2021

View File

@@ -4,7 +4,7 @@
<head>
{% block head %}
<meta charset="utf-8" />
<title>{% if title %}{{ title|striptags }} | {% else %}{% if header.title %}{{ header.title }} | {% endif %}{% endif %}{{ site.title }}</title>
<title>{% if title %}{{ title|striptags|raw }} | {% else %}{% if header.title %}{{ header.title }} | {% endif %}{% endif %}{{ site.title }}</title>
{% if header.description %}
<meta name="description" content="{{ header.description }}">
{% else %}