{% assign featured_projects = site.projects | where: "featured", true %} {% assign num_featured_projects = featured_projects | size %} {% if num_featured_projects > 0 %} Featured Projects {% for item in featured_projects limit:3 %} {% assign symbol_path = item.path | split: "/" | slice: 0, 2 | join: "/" | append: "/_includes/symbol.svg" %} {% assign relative_symbol_path = "/" | append: symbol_path %} {% include_relative {{ relative_symbol_path }} %} {{ item.title }} {{ item.description }} {% endfor %} {% endif %} {% assign num_featured_posts = site.posts | size %} {% if num_featured_posts > 0 %} Latest news From the Blog {% for item in site.posts limit:3 %} {% include post-card.html %} {% endfor %} {% endif %} {% assign other_projects = site.projects | where: "featured", false %} {% assign num_other_projects = other_projects | size %} {% if num_other_projects > 0 %} Other Projects {% for item in other_projects %} {{ item.title }} {{ item.description }} {% endfor %} {% endif %}
{{ item.description }}