{% extends "landing/base.html" %} {% load staticfiles i18n %} {% block title %}{% trans "BuildBlock |" %} {{page_title}}{% endblock title %} {% block content %}
{% for history in history_group %} {% endfor %}

{{history.date_display}}

{% for content in history.content_by_date %}

{{content.title}}

{% if content.subtitle %}{{content.subtitle}}{% endif %} {% endfor %}

{% trans 'Our Team' %}

{% for team in team_group %} {% if team.members|length != 0 %}
{{team.department}}
{% for member in team.members %}

{{member.name}}

{{member.position}}

{% if member.education %}
    {% for education in member.education %}
  • {{education}}
  • {% endfor %}
{% endif %} {% if member.work_experience %}
    {% if member.education %}
  • {% endif %} {% for work_experience in member.work_experience %}
  • {{work_experience}}
  • {% endfor %}
{% endif %} {% if member.description %}
{{member.description|safe}}
{% endif %}
{% endfor %}
{% endif %} {% endfor %}
{% endblock content %} {% block third_party %} {% endblock third_party %}