blob: 669aed944c6185a17da355d24dd2fda54e9febda [file] [log] [blame]
Rushabh Mehta1b151712012-12-27 16:50:24 +05301{% extends "html/page.html" %}
2
Rushabh Mehtad6164132012-12-27 18:40:42 +05303{% block title %}
4About Us
5{% endblock %}
6
Rushabh Mehta1b151712012-12-27 16:50:24 +05307{% block content %}
8<div class="layout-wrapper">
9 <div class="layout-main">
Rushabh Mehtad6164132012-12-27 18:40:42 +053010 {{ obj.doc.company_introduction or "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" }}
Rushabh Mehta1b151712012-12-27 16:50:24 +053011 {% if obj.doclist.get({"doctype":"Company History"}) %}
12 <h3>{{ obj.doc.company_history_heading or "Company History" }}</h3>
13 <table class="table table-bordered" style="width: 100%; table-layout: fixed">
14 <tbody>
15 {% for d in obj.doclist.get({"doctype":"Company History"}) %}
16 <tr>
17 <td style="width: 30%; text-align: right"><h4>{{ d.year }}</h4></td>
18 <td>{{ d.highlight }}</td>
19 </tr>
20 {% endfor %}
21 </tbody>
22 </table>
23 {% endif %}
24 {% if obj.doclist.get({"doctype":"Employee"}) %}
25 <h3>{{ obj.doc.team_members_heading or "Team Members" }}</h3>
26 <table class="table table-bordered" style="width: 100%; table-layout: fixed">
27 <tbody>
28 {% for d in obj.doclist.get({"doctype":"Employee"}) %}
Rushabh Mehtad6164132012-12-27 18:40:42 +053029 <tr itemscope itemtype="http://schema.org/Person">
Rushabh Mehta1b151712012-12-27 16:50:24 +053030 <td style="text-align:right; width: 30%;">
Rushabh Mehtad6164132012-12-27 18:40:42 +053031 <img src="{{ d.image }}" style="" itemprop="image"></td>
32 <td><h4 itemprop="name">{{ d.employee_name }}</h4>
33 <div itemprop="description">{{ d.bio }}</div></td>
Rushabh Mehta1b151712012-12-27 16:50:24 +053034 </tr>
35 {% endfor %}
36 </tbody>
37 </table>
38 {% endif %}
39 {{ obj.doc.footer or "" }}
40 </div>
41</div>
42{% endblock %}