{% macro job_row(job_entity) %}
{{ job_entity.title }}
@{{ job_entity.company }}
{% if job_entity.languages and job_entity.technologies %} {{ job_entity.languages | concat(with=job_entity.technologies) }} {% elif job_entity.languages %} {{job_entity.languages}} {% elif job_entity.technologies %} {{job_entity.technologies}} {% endif %}
{% if job_entity.from | format_date(type="job") != job_entity.to | format_date(type="job") %}
{{ job_entity.from | format_date(type="job") }} - {{ job_entity.to | format_date(type="job") }}
{% else %}
{{ job_entity.from | format_date(type="job") }}
{% endif %}

{{ job_entity.description | lang_entity(lang=lang) }}

{% endmacro hello_world %}