diff --git a/frappe/public/scss/website.scss b/frappe/public/scss/website.scss index a60329400a..e1b7d0a827 100644 --- a/frappe/public/scss/website.scss +++ b/frappe/public/scss/website.scss @@ -244,3 +244,9 @@ h5.modal-title { white-space: nowrap; text-overflow: ellipsis; } +.about-section { + padding-top: 1rem; +} +.about-footer { + padding-top: 1rem; +} \ No newline at end of file diff --git a/frappe/www/about.html b/frappe/www/about.html index fb9c22797d..ff1cd0c339 100644 --- a/frappe/www/about.html +++ b/frappe/www/about.html @@ -17,6 +17,7 @@ list of key team members in Website > About Us Settings

""" }} {% if doc.get({"doctype":"Company History"}) %} +

{{ doc.company_history_heading or "Company History" }}

{% for d in doc.get({"doctype":"Company History"}) %}
@@ -24,9 +25,11 @@

{{ d.highlight }}

{% endfor %} +
{% endif %} {% if doc.get({"doctype":"About Us Team Member"}) %} +

{{ doc.team_members_heading or "Team Members" }}

{% for d in doc.get({"doctype":"About Us Team Member"}) %}
@@ -40,7 +43,10 @@
{% endfor %} +
{% endif %} + {% endblock %}