{% assign projects = site.projects | where_exp: "item", "item.home_url != nil" %} {% assign posts = site.posts_combined %} {% assign num_posts = site.num_posts_combined %} {% assign featured_projects = projects | where: "featured", true %} {% assign num_featured_projects = featured_projects | size %} {% if num_featured_projects > 0 %} {% endif %} {% if num_posts > 0 %} {% endif %} {% assign other_projects = projects | where: "featured", false %} {% assign num_other_projects = other_projects | size %} {% if num_other_projects > 0 %}
{% include assets/symbol.svg %}

Other Projects

{% for item in other_projects %}
{% assign symbol_path = item.path | split: "/" | slice: 1, 1 | join: "/" | append: "/assets/symbol.svg" %} {% assign relative_symbol_path = "/projects/" | append: symbol_path %}

{{ item.title }}

{{ item.description }}

{% endfor %}
{% endif %}