templates/website/page/job.html.twig line 1
{% extends '@web/base.html.twig' %}{% if page is defined and page is not empty %}{% set metaParams = {'title': page.metaTitle ? page.metaTitle : page.title,'metaDescription': page.metaDescription,'metaKeywords': page.metaKeywords,'image':(page.metaImage is defined ? page.metaImage : page.image is defined ? page.image : null)} %}{% else %}{% set metaParams = {} %}{% endif %}{% block meta %}{% include '@web/parts/meta.html.twig' with metaParams %}{% endblock meta %}{% block content %}<section class="section-job"{% if page and page.backgroundImage is not null %}style="background-image: url('{{ page.backgroundImage }}');"{% endif %}>{% block header %}{% include '@web/parts/header.html.twig' %}{% endblock %}<div class="job-wrapper my-container-fluid">{% if page and page.image is not null %}<img class="banner-image" src="{{ page.image }}" width="100%" alt="staff">{% endif %}<div class="standard-title color-darkblue text-center">{{ job.title }}</div><div class="standard-text color-darkblue text-center">{{ job.description|raw }}</div><div class="about-team"><div class="title">{{ job.aboutTeam }}</div><div class="text">{{ job.teamDescription|raw}}</div></div><div class="standard-title color-darkblue text-center">{{ job.title }}</div>{% if jobs is not empty %}<div class="thick-wrapper">{% for item in jobs %}<div class="thick"><div class="title color-darkblue">{{item.title}}</div><div class="text color-darkblue">{{ item.description|raw }}</div><div class="learn-more"><a target="_blank" class="title" href="{{ path('page_job_view',{'slug':item.slug}) }}">{{'Իմանալ ավելին'|trans}} </a></div></div>{% endfor %}</div>{% endif %}{% if job.body is not empty %}<div class="section-fragmented"><div class="text">{{ job.body|raw}} </div></div>{% endif %}{% if jobs is not empty %}<a href="{{ path('page_apply_now') }}" class="btn-red apply title d-block m-auto mt-5">{{'Դիմել'|trans}}</a>{% endif %}</div>{% block footer %}{% include '@web/parts/footer.html.twig' %}{% endblock %}</section>{% endblock %}