blob: 2f4f6e41e19a75c2ef015154d6c35efbd85384ef [file] [log] [blame]
Rushabh Mehta3023a8f2013-04-03 16:34:23 +05301{% extends "app/website/templates/html/page.html" %}
Rushabh Mehta1b151712012-12-27 16:50:24 +05302
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 Mehta4a2f0f82013-05-22 11:57:05 +05306<div class="col col-lg-12">
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">
Rushabh Mehta4a2f0f82013-05-22 11:57:05 +053012 <span class="col col-lg-2"><h4 style="margin:0px;">{{ d.year }}</h4></span>
13 <span class="col col-lg-10"><p>{{ d.highlight }}</p></span>
Rushabh Mehta11b1fb82013-03-12 14:28:29 +053014 </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">
Rushabh Mehta4a2f0f82013-05-22 11:57:05 +053021 <span class="col col-lg-2">
Rushabh Mehta11b1fb82013-03-12 14:28:29 +053022 <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>
Rushabh Mehta4a2f0f82013-05-22 11:57:05 +053026 <span class="col col-lg-10"><h4 itemprop="name">{{ d.full_name }}</h4>
Rushabh Mehta84afb352013-03-12 15:20:46 +053027 <p itemprop="description">{{ d.bio }}</p>
Rushabh Mehta11b1fb82013-03-12 14:28:29 +053028 </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 %}