| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- {namespace ot=Opentalent\OtTemplating\ViewHelpers}
- {namespace formvh=TYPO3\CMS\Form\ViewHelpers}
- <f:comment><!-- Special layout for the Contact page --></f:comment>
- <f:layout name="Legal" />
- <f:comment><!-- Render the header defined in partial/header.html--></f:comment>
- <f:render partial="Classic/Header" arguments="{_all}" />
- <div class="main">
- <f:comment><!-- Central column --></f:comment>
- <div class="content">
- <div class="ot-legal">
- <h2>Mentions légales</h2>
- <section>
- <p>
- <f:translate key="site-published-for"/>: <strong>{settings.structureName}</strong><br>
- <f:translate key="by-society"/> <strong>2IOpenService</strong> <f:translate key="within-collection"/> <strong>Opentalent</strong>
- </p>
- <ot:members.getPresident as="president" organizationId="{settings.organizationId}">
- <f:if condition="{president}">
- <p>
- <f:translate key="director-of-publication"/>: {president.fullName}
- </p>
- </f:if>
- </ot:members.getPresident>
- </section>
- <h4><f:translate key="hosting-provider"/></h4>
- <section>
- <div>
- <div>VIA NUMERICA</div>
- <div>Technopole d'Archamps</div>
- <div>231, rue Douglas Engelbert</div>
- <div>74160 ARCHAMPS</div>
- <div>Tel : +33 (0) 458 02 01 13</div>
- <div><b><a href="http://www.via-numerica.net" target="_blank" class="moz-txt-link-abbreviated">www.via-numerica.net</a></b></div>
- </div>
- </section>
- <h4><f:translate key="copyright"/></h4>
- <section>
- <p>
- <f:translate key="copyright-section-1"/>
- </p>
- <p>
- <f:translate key="copyright-section-2"/>
- </p>
- <p>
- <f:translate key="copyright-section-3"/>
- </p>
- <p>
- <f:translate key="copyright-section-4"/>
- </p>
- <p>
- <f:translate key="copyright-section-5"/>
- </p>
- </section>
- <h4><f:translate key="in-case-of-problem"/>:</h4>
- <section>
- <div>
- <div>2IOpenService</div>
- <div><f:translate key="capitalized-llc"/> 46050,00 €</div>
- <div>SIRET n° 504 653 122 000 52 | <f:translate key="vat"/> n° FR62504653122</div>
- <div><f:translate key="offices"/> : 217, Rue Raoul Follereau - 74300 Cluses</div>
- <div><f:translate key="phone"/> : 09 72 12 60 17</div>
- </div>
- </section>
- </div>
- </div>
- </div>
- <f:comment><!-- Render the footer defined in partial/footer.html--></f:comment>
- <f:render partial="Classic/Footer" />
|