Przeglądaj źródła

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
version-14
Case Solved 5 lat temu
committed by GitHub
rodzic
commit
ee86f34a6d
Nie znaleziono w bazie danych klucza dla tego podpisu ID klucza GPG: 4AEE18F83AFDEB23
3 zmienionych plików z 5 dodań i 3 usunięć
  1. +1
    -1
      frappe/templates/base.html
  2. +2
    -1
      frappe/www/about.html
  3. +2
    -1
      frappe/www/contact.html

+ 1
- 1
frappe/templates/base.html Wyświetl plik

@@ -10,7 +10,7 @@
{% include "templates/includes/meta_block.html" %} {% include "templates/includes/meta_block.html" %}
{% endblock %} {% endblock %}


<title>{% block title %} {{ title | striptags }} {% endblock %}</title>
<title>{% block title %}{{ title | striptags }}{% endblock %}</title>


{% block favicon %} {% block favicon %}
<link <link


+ 2
- 1
frappe/www/about.html Wyświetl plik

@@ -1,6 +1,7 @@
{% extends "templates/web.html" %} {% extends "templates/web.html" %}


{% block title %}About Us{% endblock %}
{% set title = "About Us" %}
{% block header %}<h1>About Us</h1>{% endblock %}
{% block page_sidebar %} {% block page_sidebar %}
{% include "templates/includes/web_sidebar.html" %} {% include "templates/includes/web_sidebar.html" %}
{% endblock %} {% endblock %}


+ 2
- 1
frappe/www/contact.html Wyświetl plik

@@ -1,6 +1,7 @@
{% extends "templates/web.html" %} {% 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 %} {% block page_content %}
<style> <style>


Ładowanie…
Anuluj
Zapisz