feat: Add H1 tag to About and Contact pages for SEO [v13] (#10605)

* Add H1 tag to About and Contact pages for SEO

* fix: Issue with breadcrumb on Contact Us page
This commit is contained in:
Case Solved 2020-06-19 06:01:06 +01:00 committed by GitHub
parent 2308f733f7
commit ee86f34a6d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 3 deletions

View file

@ -10,7 +10,7 @@
{% include "templates/includes/meta_block.html" %}
{% endblock %}
<title>{% block title %} {{ title | striptags }} {% endblock %}</title>
<title>{% block title %}{{ title | striptags }}{% endblock %}</title>
{% block favicon %}
<link

View file

@ -1,6 +1,7 @@
{% extends "templates/web.html" %}
{% block title %}About Us{% endblock %}
{% set title = "About Us" %}
{% block header %}<h1>About Us</h1>{% endblock %}
{% block page_sidebar %}
{% include "templates/includes/web_sidebar.html" %}
{% endblock %}

View file

@ -1,6 +1,7 @@
{% extends "templates/web.html" %}
{% block title %}{{ heading or "Contact Us"}}{% endblock %}
{% set title = heading or "Contact Us" %}
{% block header %}<h1>{{ heading or "Contact Us" }}</h1>{% endblock %}
{% block page_content %}
<style>