Remove lingering use of 'page-header'

BS removed that style
This commit is contained in:
2020-10-17 17:59:23 +01:00
parent 0fee753284
commit 848e8c8ccd
6 changed files with 19 additions and 27 deletions

View File

@@ -7,7 +7,7 @@
xml:lang="{% firstof LANGUAGE_CODE 'en' %}"
lang="{% firstof LANGUAGE_CODE 'en' %}">
<head>
<title>{% block title %}{{page_title}}{% endblock %} | Rig Information Gathering System</title>
<title>{% block title %}{{page_title|striptags}}{% endblock %} | Rig Information Gathering System</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
@@ -71,7 +71,7 @@
{% endif %}
{% endblock %}
{% if page_title and not request.is_ajax %}
<h2>{{page_title}}</h2>
<h2>{{page_title|safe}}</h2>
{% endif %}
{% block content %}{% endblock %}
</div>