{% assign t = site.t[site.active_lang] | default: site.t.en %} {% 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 %}

{{ t.other_projects | default: "Other Projects" }}

{% for item in other_projects %} {% assign project_slug = item.path | split: "/" | slice: 1, 1 | join: "" %} {% assign translated_desc = site.project_descriptions[project_slug][site.active_lang] | default: item.description %}
{% assign symbol_path = item.path | split: "/" | slice: 1, 1 | join: "/" | append: "/assets/symbol.svg" %} {% assign relative_symbol_path = "/projects/" | append: symbol_path %}

{{ item.title }}

{{ translated_desc }}

{% endfor %}
{% endif %}