Legal.html 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. {namespace ot=Opentalent\OtTemplating\ViewHelpers}
  2. {namespace formvh=TYPO3\CMS\Form\ViewHelpers}
  3. <f:comment><!-- Special layout for the Contact page --></f:comment>
  4. <f:layout name="Legal" />
  5. <f:comment><!-- Render the header defined in partial/header.html--></f:comment>
  6. <f:render partial="Classic/Header" arguments="{_all}" />
  7. <div class="main">
  8. <f:comment><!-- Central column --></f:comment>
  9. <div class="content">
  10. <div class="ot-legal">
  11. <h2>Mentions légales</h2>
  12. <section>
  13. <p>
  14. <f:translate key="site-published-for"/>: <strong>{settings.structureName}</strong><br>
  15. <f:translate key="by-society"/> <strong>2IOpenService</strong> <f:translate key="within-collection"/> <strong>Opentalent</strong>
  16. </p>
  17. <ot:organizations.getById as="organization" organizationId="{settings.organizationId}">
  18. <f:if condition="{organization.publicationDirectors}">
  19. <p>
  20. <f:translate key="director-of-publication"/>: {organization.publicationDirectors}
  21. </p>
  22. </f:if>
  23. </ot:organizations.getById>
  24. </section>
  25. <h4><f:translate key="hosting-provider"/></h4>
  26. <section>
  27. <div>
  28. <div>OVH</div>
  29. <div>2 rue Kellermann</div>
  30. <div>59100 Roubaix</div>
  31. <div>France</div>
  32. <div><b><a href="https://www.ovh.com/" target="_blank" class="moz-txt-link-abbreviated">www.ovh.com/</a></b></div>
  33. </div>
  34. </section>
  35. <h4><f:translate key="copyright"/></h4>
  36. <section>
  37. <p>
  38. <f:translate key="copyright-section-1"/>
  39. </p>
  40. <p>
  41. <f:translate key="copyright-section-2"/>
  42. </p>
  43. <p>
  44. <f:translate key="copyright-section-3"/>
  45. </p>
  46. <p>
  47. <f:translate key="copyright-section-4"/>
  48. </p>
  49. <p>
  50. <f:translate key="copyright-section-5"/>
  51. </p>
  52. </section>
  53. <h4><f:translate key="in-case-of-problem"/>:</h4>
  54. <section>
  55. <div>
  56. <div>2IOpenService</div>
  57. <div><f:translate key="capitalized-llc"/> 46050,00 €</div>
  58. <div>SIRET n° 504 653 122 000 52 | <f:translate key="vat"/> n° FR62504653122</div>
  59. <div><f:translate key="offices"/> : 217, Rue Raoul Follereau - 74300 Cluses</div>
  60. <div><f:translate key="phone"/> : 09 72 12 60 17</div>
  61. <div>
  62. <a href="https://www.opentalent.fr/politique/" target="_blank">
  63. <f:translate key="see-ot-legal-mentions-here"/>
  64. </a>
  65. </div>
  66. </div>
  67. </section>
  68. </div>
  69. </div>
  70. </div>
  71. <f:comment><!-- Render the footer defined in partial/footer.html--></f:comment>
  72. <f:render partial="Classic/Footer" />