templates/default/content/so_geht_es.html.twig line 1

Open in your IDE?
  1. {% extends '/default/content/base.html.twig' %}
  2. {% block stylesheets %}
  3. <style>
  4. .card.little-card {
  5. box-shadow: none;
  6. }
  7. .custom-margins {
  8. padding-top: 0;
  9. padding-left: 5px;
  10. }
  11. .card .card-body .card-text {
  12. font-size: 1.1rem;
  13. line-height: 1.2;
  14. color: black;
  15. padding-left: 0;
  16. margin-bottom: 30px;
  17. }
  18. .card .card-body .card-title {
  19. padding-left: 0;
  20. }
  21. .card > hr {
  22. padding: 1px;
  23. margin-top: 2px;
  24. margin-bottom: 0;
  25. }
  26. .go-rounded {
  27. border-radius: 20px;
  28. }
  29. .go-color {
  30. vertical-align: top;
  31. font-size: 120px;
  32. font-weight: lighter;
  33. line-height: 0.5;
  34. padding-top: 0;
  35. margin-top: 0;
  36. }
  37. @media screen and (max-width: 370px) {
  38. .card > hr {
  39. padding: 1px;
  40. margin-top: 2px;
  41. margin-bottom: 0;
  42. }
  43. .card-img {
  44. height: 75px;
  45. width: 70px;
  46. margin-left: 0;
  47. padding-left: 0;
  48. }
  49. }
  50. @media screen and (max-width: 330px) {
  51. .card .card-body .card-title {
  52. font-size: 1.1rem;
  53. padding-left: 0;
  54. }
  55. .card .card-body .card-text {
  56. font-size: 1rem;
  57. line-height: 1.2;
  58. color: black;
  59. padding-left: 0;
  60. margin-bottom: 30px;
  61. }
  62. .card-img {
  63. height: 65px;
  64. width: 60px;
  65. margin-left: 0;
  66. padding-left: 0;
  67. }
  68. }
  69. </style>
  70. {% endblock %}
  71. {% block content_headline %}
  72. {{ 'frequently_asked_questions.title'|trans }}
  73. {% endblock %}
  74. {% block content_body %}
  75. <div class="row">
  76. <div class="col">
  77. <div class="card little-card" data-testclass="faq-title-cta">
  78. <hr class="bg-primary">
  79. </div>
  80. <div class="card little-card">
  81. <a class="d-none d-sm-flex flex-row justify-content-start align-items-center py-1"
  82. href="{{ path('content', {'content': 'so-gehts-anleitung'}) }}"
  83. data-testclass="faq-title-cta"
  84. style="overflow: hidden;">
  85. <div data-testid="box-jobs" class="p-2">
  86. <img data-testclass="faq-icon-cta"
  87. src="{{ asset('assets/images/faq_noun_tutorial_blue.png')|cdnifyUri }}"
  88. style="width: auto; height: auto; max-height: 130px; max-width: 130px;"
  89. alt="{{ 'frequently_asked_questions.questions.how_it_works'|trans }}">
  90. </div>
  91. <div class="p-2">
  92. <div class="custom-margins">
  93. <h5 class="card-title">{{ 'frequently_asked_questions.questions.how_it_works'|trans }}</h5>
  94. <p class="card-text pb-0 mb-0">{{ 'frequently_asked_questions.explanations.how_it_works'|trans }}</p>
  95. </div>
  96. </div>
  97. <div class="p-2 d-none d-lg-block ml-auto">
  98. <span data-testclass="faq-arrow-cta" class="go-color text-primary">&gt;</span>
  99. </div>
  100. </a>
  101. <a class="d-flex d-sm-none flex-row justify-content-start align-items-center py-1"
  102. href="{{ path('content', {'content': 'so-gehts-anleitung'}) }}"
  103. style="overflow: hidden">
  104. <div data-testid="box-jobs" class="p-2">
  105. <img src="{{ asset('assets/images/faq_noun_tutorial_blue.png')|cdnifyUri }}"
  106. style="width: auto; height: auto; max-height: 40px; max-width: 40px;"
  107. alt="{{ 'frequently_asked_questions.questions.how_it_works'|trans }}">
  108. </div>
  109. <div class="m-0">
  110. <div class="py-0 my-0">
  111. <div>
  112. <h6 class="overflow-hidden mb-0 pb-0">
  113. {{ 'frequently_asked_questions.questions.how_it_works'|trans }}
  114. </h6>
  115. </div>
  116. </div>
  117. </div>
  118. <div class="ml-auto">
  119. <span class="px-1">&gt;</span>
  120. </div>
  121. </a>
  122. <hr class="bg-primary">
  123. {% if app.user is defined and app.user is not null and app.user.isJobseeker %}
  124. <a class="d-none d-sm-flex flex-row justify-content-start align-items-center py-1"
  125. href="{{ path('contact') }}"
  126. data-testclass="faq-title-cta"
  127. style="overflow: hidden;">
  128. <div data-testid="box-jobs" class="p-2">
  129. <img data-testclass="faq-icon-cta"
  130. src="{{ asset('assets/images/dashboard-help.png')|cdnifyUri }}"
  131. style="width: auto; height: auto; max-height: 130px; width: 130px;"
  132. alt="{{ 'frequently_asked_questions.questions.how_it_works'|trans }}">
  133. </div>
  134. <div class="p-2">
  135. <div class="custom-margins">
  136. <h5 class="card-title">{{ 'frequently_asked_questions.questions.help_and_contact'|trans }}</h5>
  137. <p class="card-text pb-0 mb-0">{{ 'frequently_asked_questions.explanations.help_and_contact'|trans }}</p>
  138. </div>
  139. </div>
  140. <div class="p-2 d-none d-lg-block ml-auto">
  141. <span data-testclass="faq-arrow-cta" class="go-color text-primary">&gt;</span>
  142. </div>
  143. </a>
  144. <a class="d-flex d-sm-none flex-row justify-content-start align-items-center py-1"
  145. href="{{ path('contact') }}"
  146. style="overflow: hidden">
  147. <div data-testid="box-jobs" class="p-2">
  148. <img src="{{ asset('assets/images/dashboard-help.png')|cdnifyUri }}"
  149. style="width: auto; height: auto; max-height: 40px; max-width: 40px;"
  150. alt="{{ 'frequently_asked_questions.questions.help_and_contact'|trans }}">
  151. </div>
  152. <div class="m-0">
  153. <div class="py-0 my-0">
  154. <div>
  155. <h6 class="overflow-hidden mb-0 pb-0">
  156. {{ 'frequently_asked_questions.questions.help_and_contact'|trans }}
  157. </h6>
  158. </div>
  159. </div>
  160. </div>
  161. <div class="ml-auto">
  162. <span class="px-1">&gt;</span>
  163. </div>
  164. </a>
  165. <hr class="bg-primary">
  166. {% endif %}
  167. {% if app.user is defined and app.user is not null and app.user.isJobseeker %}
  168. <a class="d-none d-sm-flex flex-row justify-content-start align-items-center py-1"
  169. href="{{ path('recurrent_jobs.show_recurrent_jobs_belonging_to_joboo_gmbh') }}"
  170. data-testclass="faq-title-cta"
  171. style="overflow: hidden;">
  172. <div data-testid="box-jobs" class="p-2">
  173. <img data-testclass="faq-icon-cta"
  174. src="{{ asset('assets/images/default/joboo-logo-square-full.png')|cdnifyUri }}"
  175. style="width: auto; height: auto; max-height: 130px; max-width: 130px;"
  176. alt="{{ 'frequently_asked_questions.questions.how_to_career_at_joboo'|trans }}">
  177. </div>
  178. <div class="p-2">
  179. <div class="custom-margins">
  180. <h5 class="card-title">{{ 'frequently_asked_questions.questions.how_to_career_at_joboo'|trans }}</h5>
  181. <p class="card-text pb-0 mb-0">{{ 'frequently_asked_questions.explanations.how_to_career_at_joboo'|trans }}</p>
  182. </div>
  183. </div>
  184. <div class="p-2 d-none d-lg-block ml-auto">
  185. <span data-testclass="faq-arrow-cta" class="go-color text-primary">&gt;</span>
  186. </div>
  187. </a>
  188. <a class="d-flex d-sm-none flex-row justify-content-start align-items-center py-1"
  189. href="{{ path('recurrent_jobs.show_recurrent_jobs_belonging_to_joboo_gmbh') }}"
  190. style="overflow: hidden">
  191. <div data-testid="box-jobs" class="p-2">
  192. <img src="{{ asset('assets/images/default/joboo-logo-square-full.png')|cdnifyUri }}"
  193. style="width: auto; height: auto; max-height: 40px; max-width: 40px;"
  194. alt="{{ 'frequently_asked_questions.questions.how_to_career_at_joboo'|trans }}">
  195. </div>
  196. <div class="m-0">
  197. <div class="py-0 my-0">
  198. <div>
  199. <h6 class="overflow-hidden mb-0 pb-0">
  200. {{ 'frequently_asked_questions.questions.how_to_career_at_joboo'|trans }}
  201. </h6>
  202. </div>
  203. </div>
  204. </div>
  205. <div class="ml-auto">
  206. <span class="px-1">&gt;</span>
  207. </div>
  208. </a>
  209. <hr class="bg-primary">
  210. {% else %}
  211. <a class="d-none d-sm-flex flex-row justify-content-start align-items-center py-1"
  212. href="{{ path('contactForCorporateClients') }}"
  213. data-testclass="faq-title-cta"
  214. style="overflow: hidden;">
  215. <div data-testid="box-jobs" class="p-2">
  216. <img data-testclass="faq-icon-cta"
  217. src="{{ asset('assets/images/faq_noun_store_blue.png')|cdnifyUri }}"
  218. style="width: auto; height: auto; max-height: 130px; max-width: 130px;"
  219. alt="{{ 'frequently_asked_questions.questions.how_to_jobofferer_multiple_locations'|trans }}">
  220. </div>
  221. <div class="p-2">
  222. <div class="custom-margins">
  223. <h5 class="card-title">{{ 'frequently_asked_questions.questions.how_to_jobofferer_multiple_locations'|trans }}</h5>
  224. <p class="card-text pb-0 mb-0">{{ 'frequently_asked_questions.explanations.how_to_jobofferer_multiple_locations'|trans }}</p>
  225. </div>
  226. </div>
  227. <div class="p-2 d-none d-lg-block ml-auto">
  228. <span data-testclass="faq-arrow-cta" class="go-color text-primary">&gt;</span>
  229. </div>
  230. </a>
  231. <a class="d-flex d-sm-none flex-row justify-content-start align-items-center py-1"
  232. href="{{ path('contactForCorporateClients') }}"
  233. style="overflow: hidden">
  234. <div data-testid="box-jobs" class="p-2">
  235. <img src="{{ asset('assets/images/faq_noun_store_blue.png')|cdnifyUri }}"
  236. style="width: auto; height: auto; max-height: 40px; max-width: 40px;"
  237. alt="{{ 'frequently_asked_questions.questions.how_to_jobofferer_multiple_locations'|trans }}">
  238. </div>
  239. <div class="m-0">
  240. <div class="py-0 my-0">
  241. <div>
  242. <h6 class="overflow-hidden mb-0 pb-0">
  243. {{ 'frequently_asked_questions.questions.how_to_jobofferer_multiple_locations'|trans }}
  244. </h6>
  245. </div>
  246. </div>
  247. </div>
  248. <div class="ml-auto">
  249. <span class="px-1">&gt;</span>
  250. </div>
  251. </a>
  252. <hr class="bg-primary">
  253. {% endif %}
  254. {% if app.user is not defined or app.user is null or app.user.isJobofferer %}
  255. <a class="d-none d-sm-flex flex-row justify-content-start align-items-center py-1"
  256. href="{{ path('contact') }}"
  257. data-testclass="faq-title-cta"
  258. style="overflow: hidden;">
  259. <div data-testid="box-jobs" class="p-2">
  260. <img data-testclass="faq-icon-cta"
  261. src="{{ asset('assets/images/dashboard-help.png')|cdnifyUri }}"
  262. style="width: auto; height: auto; max-height: 130px; width: 130px;"
  263. alt="{{ 'frequently_asked_questions.questions.how_it_works'|trans }}">
  264. </div>
  265. <div class="p-2">
  266. <div class="custom-margins">
  267. <h5 class="card-title">{{ 'frequently_asked_questions.questions.help_and_contact'|trans }}</h5>
  268. <p class="card-text pb-0 mb-0">{{ 'frequently_asked_questions.explanations.help_and_contact'|trans }}</p>
  269. </div>
  270. </div>
  271. <div class="p-2 d-none d-lg-block ml-auto">
  272. <span data-testclass="faq-arrow-cta" class="go-color text-primary">&gt;</span>
  273. </div>
  274. </a>
  275. <a class="d-flex d-sm-none flex-row justify-content-start align-items-center py-1"
  276. href="{{ path('contact') }}"
  277. style="overflow: hidden">
  278. <div data-testid="box-jobs" class="p-2">
  279. <img src="{{ asset('assets/images/dashboard-help.png')|cdnifyUri }}"
  280. style="width: auto; height: auto; max-height: 40px; max-width: 40px;"
  281. alt="{{ 'frequently_asked_questions.questions.help_and_contact'|trans }}">
  282. </div>
  283. <div class="m-0">
  284. <div class="py-0 my-0">
  285. <div>
  286. <h6 class="overflow-hidden mb-0 pb-0">
  287. {{ 'frequently_asked_questions.questions.help_and_contact'|trans }}
  288. </h6>
  289. </div>
  290. </div>
  291. </div>
  292. <div class="ml-auto">
  293. <span class="px-1">&gt;</span>
  294. </div>
  295. </a>
  296. <hr class="bg-primary">
  297. {% endif %}
  298. </div>
  299. </div>
  300. </div>
  301. {% endblock %}