Rushabh Mehta | 1b15171 | 2012-12-27 16:50:24 +0530 | [diff] [blame] | 1 | {% extends "html/page.html" %} |
| 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 | 78db3ec | 2013-02-21 14:25:30 +0530 | [diff] [blame] | 6 | <div class="span12"> |
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"> |
| 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 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"> |
| 21 | <span class="span2"> |
| 22 | <div class="avatar avatar-large"> |
| 23 | <img class="avatar" src="{{ d.image }}" style="" itemprop="image"> |
| 24 | </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 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 %} |