layout: page title: About layout: default permalink: /about/


<section class=“section bg-light py-5”>

<div class="container">
  <div class="title text-center">
    <h2>About Us</h2>
    <h4>This is who we are</h4>
  </div>
  <div class="section-content pt-5">
    <div class="row text-center justify-content-md-center">

      {%- for author_kv in site.data.authors -%}
      {%- assign author_k = author_kv | keys -%}
      {%- assign author = author_k[1] -%}

      {%- include author.html author=author -%}

      {%- endfor -%}

    </div>
  </div>
</div>

</section>