1<?php use Fisharebest\Webtrees\I18N; ?> 2 3<h2><?= $title ?></h2> 4 5<h3><?= I18N::translate('Personal data') ?></h3> 6 7<ul> 8 <li> 9 <?= I18N::translate('This website processes personal data for the purpose of historical and genealogical research.') ?> 10 </li> 11 <li> 12 <?= I18N::translate('This research is a “legitimate interest” under article 6(f) of the EU General Data Protection Regulations.') ?> 13 </li> 14</ul> 15 16<h3><?= I18N::translate('Cookies') ?></h3> 17 18<ul> 19 <li> 20 <?= I18N::translate('This website uses cookies to enable login sessions, and to remember preferences such as your chosen language.') ?> 21 </li> 22 <li> 23 <?= I18N::translate('These cookies are “essential”, and do not require consent.') ?> 24 </li> 25</ul> 26 27<?php if ($analytics->isNotEmpty()): ?> 28 <h3><?= I18N::translate('Tracking and analytics') ?></h3> 29 30 <ul> 31 <li> 32 <?= I18N::translate('This website uses third-party services to learn about visitor behavior.') ?> 33 <ul> 34 <?php foreach ($analytics as $module): ?> 35 <li> 36 <a href="<?= e($module->externalUrl()) ?>"><?= $module->title() ?></a> 37 </li> 38 <?php endforeach ?> 39 </ul> 40 </li> 41 42 <li> 43 <?= I18N::translate('These services may use cookies or other tracking technology.') ?> 44 </li> 45 46 <li> 47 <?= I18N::translate('You can opt out of tracking by setting the ”Do Not Track“ header in your browser preferences.') ?> 48 </li> 49 </ul> 50<?php endif ?> 51 52<h3><?= I18N::translate('Data controller') ?></h3> 53 54<ul> 55 <li> 56 <?= I18N::translate('This website is operated by the following individuals.') ?> 57 58 <ul> 59 <?php foreach ($administrators as $administrator): ?> 60 <li> 61 <?= e($administrator->realName()) ?> — 62 <a href="mailto:<?= e($administrator->email()) ?>"><?= e($administrator->email()) ?></a> 63 64 65 </li> 66 <?php endforeach ?> 67 </ul> 68 69 </li> 70</ul> 71 72