Rushabh Mehta | 1b15171 | 2012-12-27 16:50:24 +0530 | [diff] [blame] | 1 | {% extends "html/page.html" %} |
| 2 | |
Rushabh Mehta | d616413 | 2012-12-27 18:40:42 +0530 | [diff] [blame] | 3 | {% block title %} |
| 4 | About Us |
| 5 | {% endblock %} |
| 6 | |
Rushabh Mehta | 1b15171 | 2012-12-27 16:50:24 +0530 | [diff] [blame] | 7 | {% block content %} |
| 8 | <div class="layout-wrapper"> |
| 9 | <div class="layout-main"> |
Rushabh Mehta | 84adf1b | 2012-12-28 10:30:46 +0530 | [diff] [blame^] | 10 | {{ 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 Mehta | 1b15171 | 2012-12-27 16:50:24 +0530 | [diff] [blame] | 11 | {% 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 Mehta | d616413 | 2012-12-27 18:40:42 +0530 | [diff] [blame] | 29 | <tr itemscope itemtype="http://schema.org/Person"> |
Rushabh Mehta | 1b15171 | 2012-12-27 16:50:24 +0530 | [diff] [blame] | 30 | <td style="text-align:right; width: 30%;"> |
Rushabh Mehta | d616413 | 2012-12-27 18:40:42 +0530 | [diff] [blame] | 31 | <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 Mehta | 1b15171 | 2012-12-27 16:50:24 +0530 | [diff] [blame] | 34 | </tr> |
| 35 | {% endfor %} |
| 36 | </tbody> |
| 37 | </table> |
| 38 | {% endif %} |
| 39 | {{ obj.doc.footer or "" }} |
| 40 | </div> |
| 41 | </div> |
| 42 | {% endblock %} |