{% assign spinoffs = site.data.airtable | where: “type”, “Spin-off” | where: “mainProject”, “MB1” %} {% for item in spinoffs %}

{{ item.project }}: {{ item.description }}

{% endfor %}


TEST4

{% assign mb1projects = site.data.airtable | where: “mainProject”, “MB1” %} {% assign mb1main = mb1projects | where: “type”, “Main” %}

{% assign mb1main = site.data.airtable | where: “type”, “Main” | where: “mainProject”, “MB1” %}
  <div class="row">
    <div class="col-sm-2 col-xs-6" align="center">
      <a href="https://{{mb1main.website }}"><img src="{{ mb1main.logoPath }}" alt="{{ mb1main.project}} logo" width="100" height="100"></a>
    </div>
    <div class="col-sm-10">
      <h4><a href=" https://{{mb1main.website }}">{{ mb1main.project }}:</a> {{ mb1main.description }}</h4>
      <b>Status:</b> <i>{{ mb1main.status }}</i><br>
      <hr>
    </div>
  </div> 

{% endif %}

{% assign mb1spinoffs = site.data.airtable | where: “type”, “Spin-off” | where: “mainProject”, “MB1” %}
{% for item in mb1spinoffs %}
  <div class="col-sm-2">  
  </div>
  <div class="col-sm-2 col-xs-6" align="center">
    <a href="https://{{item.website }}"><img src="{{ item.logoPath }}" alt="{{ item.project}} logo" width="75" height="75"></a>
  </div>
  <div class="col-sm-8">
    <h4><a href=" https://{{item.website }}">{{ item.project }}:</a> {{ item.description }}</h4>
    <b>Status:</b> <i>{{ item.status }}</i><br>
    <hr>
  </div>
</div> 

{% endfor %}