{% assign c = "c-project-card" %}
{{ include.project.title }}
{% if include.project.subtitle %}
{{ include.project.subtitle }}
{% endif %}
{% if include.project.date %} {% assign year = include.project.date | date: "%Y" %} {% assign month_index = include.project.date | date: "%-m" | minus: 1 %} {% assign months = site.data.months[current_lang] %}
{{ months[month_index] }} {{ year }}
{% endif %}

{{ include.project.title }}

{% if include.project.tags.size >= 1 %}
{% for tag in include.project.tags %} {% assign tag_slug = tag | slugify %} {% assign tag_key = tag | downcase %} {% assign localized_tag = site.data.tags[tag_key][current_lang] | default: tag %} {% assign tag_type = site.data.tags[tag_key].type | default: "category" %} {{ localized_tag }} {% endfor %}
{% endif %}