blob: 0015d894d2ffae6badf8f210b9dff4f67a53847e [file] [log] [blame]
Rushabh Mehta1b151712012-12-27 16:50:24 +05301{% extends "html/page.html" %}
2
Rushabh Mehtaf2b17d92013-02-21 10:49:37 +05303{% set title="About Us" %}
Rushabh Mehtad6164132012-12-27 18:40:42 +05304
Rushabh Mehta1b151712012-12-27 16:50:24 +05305{% block content %}
Rushabh Mehta78db3ec2013-02-21 14:25:30 +05306<div class="span12">
Rushabh Mehta84adf1b2012-12-28 10:30:46 +05307 {{ obj.doc.company_introduction or "<h2>About Us</h2><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>" }}
Rushabh Mehta1b151712012-12-27 16:50:24 +05308 {% if obj.doclist.get({"doctype":"Company History"}) %}
9 <h3>{{ obj.doc.company_history_heading or "Company History" }}</h3>
Rushabh Mehta11b1fb82013-03-12 14:28:29 +053010 {% for d in obj.doclist.get({"doctype":"Company History"}) %}
11 <div class="row">
12 <span class="span2" style="text-align: right"><h4 style="margin:0px;">{{ d.year }}</h4></span>
13 <span class="span10"><p>{{ d.highlight }}</p></span>
14 </div>
15 {% endfor %}
Rushabh Mehta1b151712012-12-27 16:50:24 +053016 {% endif %}
Rushabh Mehta11b1fb82013-03-12 14:28:29 +053017 {% if obj.doclist.get({"doctype":"About Us Team Member"}) %}
Rushabh Mehta1b151712012-12-27 16:50:24 +053018 <h3>{{ obj.doc.team_members_heading or "Team Members" }}</h3>
Rushabh Mehta11b1fb82013-03-12 14:28:29 +053019 {% for d in obj.doclist.get({"doctype":"About Us Team Member"}) %}
20 <div class="row" itemscope itemtype="http://schema.org/Person">
21 <span class="span2">
22 <div class="avatar avatar-large">
Rushabh Mehta6a4c4682013-03-12 14:59:46 +053023 <img class="avatar" src="{{ d.image_link }}" style="" itemprop="image">
Rushabh Mehta11b1fb82013-03-12 14:28:29 +053024 </div>
25 </span>
26 <span class="span10"><h4 itemprop="name">{{ d.full_name }}</h4>
27 <div itemprop="description">{{ d.bio }}</div>
28 </span>
29 </div>
30 {% endfor %}
Rushabh Mehta1b151712012-12-27 16:50:24 +053031 {% endif %}
32 {{ obj.doc.footer or "" }}
Rushabh Mehta1b151712012-12-27 16:50:24 +053033</div>
34{% endblock %}