瀏覽代碼
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 年之前
committed by
GitHub
沒有發現已知的金鑰在資料庫的簽署中
GPG 金鑰 ID: 4AEE18F83AFDEB23
共有
3 個檔案被更改,包括
5 行新增 和
3 行删除
-
frappe/templates/base.html
-
frappe/www/about.html
-
frappe/www/contact.html
|
|
@@ -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 |
|
|
|
|
|
@@ -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 %} |
|
|
|
|
|
@@ -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> |
|
|
|