diff options
| author | Greg Roach <fisharebest@webtrees.net> | 2018-10-12 11:04:12 +0100 |
|---|---|---|
| committer | Greg Roach <fisharebest@webtrees.net> | 2018-10-12 11:15:32 +0100 |
| commit | dd6b2bfcc550270bb6d6778e11576148f71e4330 (patch) | |
| tree | 9462a8eabe1103a0e79c18c521b6b4858a3fb2dc /resources/views/privacy-policy.phtml | |
| parent | afb591d7c8a3029b0ca03e6d185cacca3c22eb5f (diff) | |
| download | webtrees-dd6b2bfcc550270bb6d6778e11576148f71e4330.tar.gz webtrees-dd6b2bfcc550270bb6d6778e11576148f71e4330.tar.bz2 webtrees-dd6b2bfcc550270bb6d6778e11576148f71e4330.zip | |
Use .phtml extension for template files
Diffstat (limited to 'resources/views/privacy-policy.phtml')
| -rw-r--r-- | resources/views/privacy-policy.phtml | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/resources/views/privacy-policy.phtml b/resources/views/privacy-policy.phtml new file mode 100644 index 0000000000..a77daff71f --- /dev/null +++ b/resources/views/privacy-policy.phtml @@ -0,0 +1,29 @@ +<?php use Fisharebest\Webtrees\I18N; ?> + +<h2 class="wt-page-title"> + <?= $title ?> +</h2> + +<p> + <?= I18N::translate('The data in this website has been collected for the purposes of genealogical research.') ?> +</p> + +<h3> + <?= I18N::translate('Cookies') ?> +</h3> + +<p> + <?= I18N::translate('This site uses cookies to store your preferences on this site, such as the language you have selected.') ?> +</p> + +<h3> + <?= I18N::translate('Tracking and analytics') ?> +</h3> + +<?php if ($uses_analytics) : ?> +<p> + <?= I18N::translate('This site does not use any third-party tracking or analytics services.') ?> +</p> +<?php else : ?> +<?php endif ?> + |
