Rushabh Mehta | 3023a8f | 2013-04-03 16:34:23 +0530 | [diff] [blame] | 1 | {% extends "app/website/templates/html/page.html" %} |
Rushabh Mehta | 1b15171 | 2012-12-27 16:50:24 +0530 | [diff] [blame] | 2 | |
Rushabh Mehta | f2b17d9 | 2013-02-21 10:49:37 +0530 | [diff] [blame] | 3 | {% set title="About Us" %} |
Rushabh Mehta | d616413 | 2012-12-27 18:40:42 +0530 | [diff] [blame] | 4 | |
Rushabh Mehta | 1b15171 | 2012-12-27 16:50:24 +0530 | [diff] [blame] | 5 | {% block content %} |
Rushabh Mehta | 4a2f0f8 | 2013-05-22 11:57:05 +0530 | [diff] [blame] | 6 | <div class="col col-lg-12"> |
Rushabh Mehta | 84adf1b | 2012-12-28 10:30:46 +0530 | [diff] [blame] | 7 | {{ 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] | 8 | {% if obj.doclist.get({"doctype":"Company History"}) %} |
| 9 | <h3>{{ obj.doc.company_history_heading or "Company History" }}</h3> |
Rushabh Mehta | 11b1fb8 | 2013-03-12 14:28:29 +0530 | [diff] [blame] | 10 | {% for d in obj.doclist.get({"doctype":"Company History"}) %} |
| 11 | <div class="row"> |
Rushabh Mehta | 4a2f0f8 | 2013-05-22 11:57:05 +0530 | [diff] [blame] | 12 | <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 Mehta | 11b1fb8 | 2013-03-12 14:28:29 +0530 | [diff] [blame] | 14 | </div> |
| 15 | {% endfor %} |
Rushabh Mehta | 1b15171 | 2012-12-27 16:50:24 +0530 | [diff] [blame] | 16 | {% endif %} |
Rushabh Mehta | 11b1fb8 | 2013-03-12 14:28:29 +0530 | [diff] [blame] | 17 | {% if obj.doclist.get({"doctype":"About Us Team Member"}) %} |
Rushabh Mehta | 1b15171 | 2012-12-27 16:50:24 +0530 | [diff] [blame] | 18 | <h3>{{ obj.doc.team_members_heading or "Team Members" }}</h3> |
Rushabh Mehta | 11b1fb8 | 2013-03-12 14:28:29 +0530 | [diff] [blame] | 19 | {% for d in obj.doclist.get({"doctype":"About Us Team Member"}) %} |
| 20 | <div class="row" itemscope itemtype="http://schema.org/Person"> |
Rushabh Mehta | 4a2f0f8 | 2013-05-22 11:57:05 +0530 | [diff] [blame] | 21 | <span class="col col-lg-2"> |
Rushabh Mehta | 11b1fb8 | 2013-03-12 14:28:29 +0530 | [diff] [blame] | 22 | <div class="avatar avatar-large"> |
Rushabh Mehta | 6a4c468 | 2013-03-12 14:59:46 +0530 | [diff] [blame] | 23 | <img class="avatar" src="{{ d.image_link }}" style="" itemprop="image"> |
Rushabh Mehta | 11b1fb8 | 2013-03-12 14:28:29 +0530 | [diff] [blame] | 24 | </div> |
| 25 | </span> |
Rushabh Mehta | 4a2f0f8 | 2013-05-22 11:57:05 +0530 | [diff] [blame] | 26 | <span class="col col-lg-10"><h4 itemprop="name">{{ d.full_name }}</h4> |
Rushabh Mehta | 84afb35 | 2013-03-12 15:20:46 +0530 | [diff] [blame] | 27 | <p itemprop="description">{{ d.bio }}</p> |
Rushabh Mehta | 11b1fb8 | 2013-03-12 14:28:29 +0530 | [diff] [blame] | 28 | </span> |
| 29 | </div> |
| 30 | {% endfor %} |
Rushabh Mehta | 1b15171 | 2012-12-27 16:50:24 +0530 | [diff] [blame] | 31 | {% endif %} |
| 32 | {{ obj.doc.footer or "" }} |
Rushabh Mehta | 1b15171 | 2012-12-27 16:50:24 +0530 | [diff] [blame] | 33 | </div> |
| 34 | {% endblock %} |