seitime-frappe/frappe/www/about.html
2020-09-10 16:51:00 +05:30

52 lines
1.7 KiB
HTML

{% extends "templates/web.html" %}
{% set title = "About Us" %}
{% block header %}<h1>About Us</h1>{% endblock %}
{% block page_sidebar %}
{% include "templates/includes/web_sidebar.html" %}
{% endblock %}
{% block page_content %}
<article class="about-content">
{{ doc.company_introduction or """<p>Some Introduction about your company that you would
like your website visitor to know.
More people than you think will read your About page.
People always like to know who the are doing business with.
Be authentic and avoid using jargon like 'value added services' etc.
Be sure to update your company history and
list of key team members in Website > About Us Settings</p>""" }}
{% if doc.get({"doctype":"Company History"}) %}
<div class="about-section">
<h3>{{ doc.company_history_heading or "Company History" }}</h3>
{% for d in doc.get({"doctype":"Company History"}) %}
<div class="row">
<span class="col-md-2"><h4 style="margin:0px;">{{ d.year }}</h4></span>
<span class="col-md-10"><p>{{ d.highlight }}</p></span>
</div>
{% endfor %}
</div>
{% endif %}
{% if doc.get({"doctype":"About Us Team Member"}) %}
<div class="about-section">
<h3>{{ doc.team_members_heading or "Team Members" }}</h3>
{% for d in doc.get({"doctype":"About Us Team Member"}) %}
<div class="row" itemscope itemtype="http://schema.org/Person">
<span class="col-md-2">
<div class="avatar avatar-large">
<img class="avatar" src="{{ d.image_link }}" style="" itemprop="image">
</div>
</span>
<span class="col-md-10"><h4 itemprop="name">{{ d.full_name }}</h4>
<p itemprop="description">{{ d.bio }}</p>
</span>
</div>
{% endfor %}
</div>
{% endif %}
<div class="about-footer">
{{ doc.footer or "" }}
</div>
</article>
{% endblock %}