help.php 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. <!DOCTYPE html>
  2. <html lang='<?=$page->lang?>'>
  3. <head>
  4. <meta content='text/html; charset=utf-8' http-equiv='content-type'/>
  5. <meta charset='utf-8'/>
  6. <meta name='viewport' content='width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1'/>
  7. <title><?=$page->title?></title>
  8. <link rel='shortcut icon' href='<?=$page->favicon?>'/>
  9. <!-- CSS files -->
  10. <link rel='stylesheet' type='text/css' href='<?=$static["css"]?>ui.css'/>
  11. <link rel='stylesheet' type='text/css' href='<?=$static["css"]?>help.css'/>
  12. <!-- Script files -->
  13. <script type='text/javascript' src='<?=$static["js"]?>ui.js'></script>
  14. <!-- Meta tags -->
  15. <link rel='canonical' href='<?=$page->canonical?>'/>
  16. <link rel='author' href='<?=$page->author?>'/>
  17. <link rel='publisher' href='<?=$page->author?>'/>
  18. <meta name='description' content='<?=$page->description?>'/>
  19. <meta property='og:title' content='<?=$page->title?>'/>
  20. <meta property='og:url' content='<?=$page->canonical?>'/>
  21. <meta property='og:description' content='<?=$page->description?>'/>
  22. <meta property='og:image' content='<?=$page->icon?>'/>
  23. <meta property='og:site_name' content='<?=$page->name?>'/>
  24. <meta property='og:type' content='website'/>
  25. <meta property='og:locale' content='<?=$page->lang?>'/>
  26. <meta name='twitter:card' content='summary'/>
  27. <meta name='twitter:title' content='<?=$page->title?>'/>
  28. <meta name='twitter:description' content='<?=$page->description?>'/>
  29. <meta name='twitter:image' content='<?=$page->icon?>'/>
  30. <meta name='twitter:url' content='<?=$page->canonical?>'/>
  31. <meta name='robots' content='index follow'/>
  32. </head>
  33. <body>
  34. <?php
  35. include $path["include"] . "header.php";
  36. ?>
  37. <main>
  38. <section id='shortcout'>
  39. <h3>
  40. <?=$page->string["help_shortcouts"]?>
  41. </h3>
  42. <article>
  43. <ul>
  44. <li>
  45. <a href="#association">
  46. <?=$page->string["help_contact_title"]?>
  47. </a>
  48. </li>
  49. <li>
  50. <a href="#license">
  51. <?=$page->string["help_license_title"]?>
  52. </a>
  53. </li>
  54. <li>
  55. <a href="#privacy">
  56. <?=$page->string["help_privacy_title"]?>
  57. </a>
  58. </li>
  59. <li>
  60. <a href="#cookie">
  61. <?=$page->string["help_cookie_title"]?>
  62. </a>
  63. </li>
  64. <li>
  65. <a href="#ad">
  66. <?=$page->string["help_ad_title"]?>
  67. </a>
  68. </li>
  69. </ul>
  70. </article>
  71. </section>
  72. <section id='association'>
  73. <h3 class='section_title'><?=$page->string["help_shortcouts"]?></h3>
  74. <article>
  75. <table>
  76. <tr>
  77. <td class='name'>
  78. <?=$page->string["help_contact_register"]?>
  79. </td>
  80. <td class='value'>
  81. <?=$data->registry->number?>
  82. </td>
  83. </tr>
  84. <tr>
  85. <td class='name'>
  86. <?=$page->string["help_contact_date_constitution"]?>
  87. </td>
  88. <td class='value'>
  89. <?=$data->registry->constitution_value?>
  90. </td>
  91. </tr>
  92. <tr>
  93. <td class='name'>
  94. <?=$page->string["help_contact_date_inscription"]?>
  95. </td>
  96. <td class='value'>
  97. <?=$data->registry->registry_date?>
  98. </td>
  99. </tr>
  100. <tr>
  101. <td class='name'>
  102. <?=$page->string["help_contact_city"]?>
  103. </td>
  104. <td class='value'>
  105. <?=$data->registry->city?>
  106. </td>
  107. </tr>
  108. <tr>
  109. <td class='name'>
  110. <?=$page->string["help_contact_territory"]?>
  111. </td>
  112. <td class='value'>
  113. <?=$data->registry->county?>
  114. </td>
  115. </tr>
  116. <tr>
  117. <td class='name'>
  118. <?=$page->string["help_contact_country"]?>
  119. </td>
  120. <td class='value'>
  121. <?=$data->registry->country?>
  122. </td>
  123. </tr>
  124. <tr>
  125. <td class='name'>
  126. <?=$page->string["help_contact_clasification"]?>
  127. </td>
  128. <td class='value'>
  129. <?=$data->registry->type?>
  130. </td>
  131. </tr>
  132. <tr>
  133. <td class='name'>
  134. <?=$page->string["help_contact_objectives"]?>
  135. </td>
  136. <td class='value'>
  137. <?=$data->registry->target?>
  138. </td>
  139. </tr>
  140. <tr>
  141. <td class='name'>
  142. <?=$page->string["help_contact_phone"]?>
  143. </td>
  144. <td class='value'>
  145. <?=$data->contact->phone?>
  146. </td>
  147. </tr>
  148. <tr>
  149. <td class='name'>
  150. <?=$page->string["help_contact_email"]?>
  151. </td>
  152. <td class='value'>
  153. <a target='_blank' href='mailto:<?=$data->contact->mail?>'>
  154. <?=$data->contact->mail?>
  155. </a>
  156. </td>
  157. </tr>
  158. </table>
  159. </article>
  160. </section>
  161. <section id='license'>
  162. <h3>
  163. <?=$page->string["help_license_title"]?>
  164. </h3>
  165. <article>
  166. <?=$page->string["help_license"]?>
  167. </article>
  168. </section>
  169. <section id='privacy'>
  170. <h3>
  171. <?=$page->string["help_privacy_title"]?>
  172. </h3>
  173. <article>
  174. <?=$page->string["help_privacy"]?>
  175. </article>
  176. </section>
  177. <section id='cookie'>
  178. <h3>
  179. <?=$page->string["help_cookie_title"]?>
  180. </h3>
  181. <article>
  182. <?=$page->string["help_cookie"]?>
  183. </article>
  184. </section>
  185. <section id='ad'>
  186. <h3>
  187. <?=$page->string["help_ad_title"]?>
  188. </h3>
  189. <article>
  190. <?=$page->string["help_ad"]?>
  191. </article>
  192. </section>
  193. </main>
  194. <?php
  195. include $path["include"] . "footer.php";
  196. ?>
  197. </body>
  198. </html>