j1-template 2023.8.2 → 2023.9.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (55) hide show
  1. checksums.yaml +4 -4
  2. data/_includes/themes/j1/layouts/content_generator_post.html +19 -49
  3. data/_includes/themes/j1/procedures/posts/collate_timeline.proc +185 -192
  4. data/_includes/themes/j1/procedures/posts/create_series_header.proc +1 -14
  5. data/_includes/themes/j1/procedures/posts/pager.proc +39 -46
  6. data/assets/themes/j1/adapter/js/speak2me.js +1 -1
  7. data/assets/themes/j1/adapter/js/translator.js +4 -2
  8. data/assets/themes/j1/core/css/themes/bootstrap/bootstrap.css +31 -26
  9. data/assets/themes/j1/core/css/themes/bootstrap/bootstrap.min.css +2 -2
  10. data/assets/themes/j1/core/css/themes/unodark/bootstrap.css +31 -26
  11. data/assets/themes/j1/core/css/themes/unodark/bootstrap.min.css +2 -2
  12. data/assets/themes/j1/core/css/themes/unolight/bootstrap.css +37 -29
  13. data/assets/themes/j1/core/css/themes/unolight/bootstrap.min.css +3 -3
  14. data/assets/themes/j1/core/js/template.js +58 -43
  15. data/assets/themes/j1/core/js/template.min.js +7 -7
  16. data/assets/themes/j1/core/js/template.min.js.map +1 -1
  17. data/lib/j1/version.rb +1 -1
  18. data/lib/starter_web/Gemfile +2 -2
  19. data/lib/starter_web/README.md +5 -5
  20. data/lib/starter_web/_config.yml +1 -1
  21. data/lib/starter_web/_data/blocks/footer.yml +6 -4
  22. data/lib/starter_web/_data/modules/defaults/blog_navigator.yml +89 -135
  23. data/lib/starter_web/_data/modules/defaults/speak2me.yml +1 -0
  24. data/lib/starter_web/_data/modules/justifiedGallery.yml +3 -3
  25. data/lib/starter_web/_data/modules/navigator_menu.yml +14 -7
  26. data/lib/starter_web/_data/templates/feed.xml +1 -1
  27. data/lib/starter_web/_plugins/index/lunr.rb +1 -1
  28. data/lib/starter_web/collections/posts/public/featured/_posts/0000-00-00-welcome-to-j1.adoc.erb +74 -70
  29. data/lib/starter_web/collections/posts/public/featured/_posts/2021-01-01-about-cookies.adoc +110 -84
  30. data/lib/starter_web/collections/posts/public/featured/_posts/2021-02-01-static-site-generators.adoc +49 -33
  31. data/lib/starter_web/collections/posts/public/featured/_posts/2022-02-01-about-j1.adoc +47 -26
  32. data/lib/starter_web/package.json +1 -1
  33. data/lib/starter_web/pages/public/blog/navigator/archive/allview.html +66 -63
  34. data/lib/starter_web/pages/public/blog/navigator/archive/categoryview.html +76 -77
  35. data/lib/starter_web/pages/public/blog/navigator/archive/dateview.html +63 -64
  36. data/lib/starter_web/pages/public/blog/navigator/archive/tagview.html +79 -64
  37. data/lib/starter_web/pages/public/blog/navigator/index.html +55 -99
  38. data/lib/starter_web/pages/public/learn/roundtrip/_includes/documents/themes_bootstrap.asciidoc +6 -2
  39. data/lib/starter_web/pages/public/learn/roundtrip/asciidoc_extensions.adoc +59 -35
  40. data/lib/starter_web/pages/public/learn/roundtrip/bootstrap_themes.adoc +4 -4
  41. data/lib/starter_web/pages/public/learn/roundtrip/highlghter_rouge.adoc +1 -1
  42. data/lib/starter_web/pages/public/learn/roundtrip/icon_fonts.adoc +28 -12
  43. data/lib/starter_web/pages/public/learn/roundtrip/lunr_search.adoc +12 -4
  44. data/lib/starter_web/pages/public/learn/roundtrip/modal_extentions.adoc +5 -1
  45. data/lib/starter_web/pages/public/learn/roundtrip/present_images.adoc +512 -470
  46. data/lib/starter_web/pages/public/learn/roundtrip/present_videos.adoc +20 -6
  47. data/lib/starter_web/pages/public/learn/roundtrip/responsive_tables.adoc +5 -2
  48. data/lib/starter_web/pages/public/learn/where_to_go.adoc +24 -13
  49. data/lib/starter_web/pages/public/legal/en/100_copyright.adoc +4 -1
  50. data/lib/starter_web/pages/public/legal/en/200_impress.adoc +4 -1
  51. data/lib/starter_web/pages/public/legal/en/300_privacy.adoc +632 -595
  52. data/lib/starter_web/pages/public/legal/en/400_comment_policy.adoc +12 -3
  53. data/lib/starter_web/utilsrv/_defaults/package.json +1 -1
  54. data/lib/starter_web/utilsrv/package.json +1 -1
  55. metadata +2 -2
@@ -1,595 +1,632 @@
1
- ---
2
- title: Privacy
3
- tagline: Your Personal Data
4
-
5
- date: 2023-01-01
6
- #last_modified: 2023-01-01
7
-
8
- description: >
9
- J1 Template is a Bootstrap V5 website template for the static
10
- site generator Jekyll.
11
- The operators of this website take the protection of your personal data
12
- seriously. We treat your data confidentially and protect your data privacy to
13
- the General Data Protection Regulation (GDPR) of the European Union.
14
-
15
- categories: [ Site ]
16
- tags: [ Privacy, Policy ]
17
-
18
- robots:
19
- index: true
20
- follow: true
21
-
22
- image:
23
- path: /assets/images/modules/attics/1920x1280/j1-starter-mockup-1.jpg
24
- width: 1920
25
- height: 1280
26
-
27
- sitemap: false
28
- exclude_from_search: true
29
- regenerate: false
30
- permalink: /pages/public/legal/en/privacy/
31
-
32
- resources: [ animate, clipboard, comments, rouge ]
33
- resource_options:
34
- - attic:
35
- slides:
36
- - url: /assets/images/modules/attics/1920x1280/j1-starter-mockup-1.jpg
37
- alt: J1 Starter Mockup
38
- ---
39
-
40
- // Page Initializer
41
- // =============================================================================
42
- // Enable the Liquid Preprocessor
43
- :page-liquid:
44
-
45
- // Set (local) page attributes here
46
- // -----------------------------------------------------------------------------
47
- // :page--attr: <attr-value>
48
- :legal-warning: false
49
-
50
- // Attribute settings for section control
51
- //
52
- :cookies: true
53
- :cookie-consent: true
54
- :themes: true
55
- :logs-files: false
56
- :google-analytics: true
57
- :google-translator: true
58
- :google-ads: false
59
- :hyvor: true
60
- :facebook: false
61
- :twitter: false
62
- :instagram: false
63
- :youtube: true
64
- :vimeo: true
65
- :dailymotion: true
66
- :vk: true
67
-
68
- // Load Liquid procedures
69
- // -----------------------------------------------------------------------------
70
- {% capture load_attributes %}themes/{{site.template.name}}/procedures/global/attributes_loader.proc{%endcapture%}
71
-
72
- // Load page attributes
73
- // -----------------------------------------------------------------------------
74
- {% include {{load_attributes}} scope="global" %}
75
-
76
- ifeval::[{legal-warning} == true]
77
- WARNING: This document *does not* constitute any *legal advice*. It is
78
- highly recommended to verify legal aspects and implications.
79
- endif::[]
80
-
81
-
82
- // Page content
83
- // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
84
- [role="dropcap"]
85
- The operators of this website take the protection of your personal data
86
- seriously. We treat your data confidentially and protect your data privacy to
87
- the General Data Protection Regulation (GDPR) of the European Union.
88
-
89
- // Include sub-documents (if any)
90
- // -----------------------------------------------------------------------------
91
- ifeval::[{cookies} == true]
92
- [role="mt-5"]
93
- == Cookies
94
-
95
- This website uses cookies and similar technologies for its operation
96
- this offer. You are free to give your consent, refuse, or revoke by clicking on
97
- the data protection dialog button.
98
-
99
- Subsequent changes are possible *at any time* by clicking on the icon
100
- mdi:cookie[24px, md-blue] placed top right in the *menu bar*.
101
-
102
- [role="mb-4"]
103
- *Advanced* third-party cookies are only used with your consent. Additional
104
- cookies are used to analyze the website usage or to offer personalized content.
105
- The evaluation of this information gives you a better user experience of the
106
- offered content, such as additional functions. Further information you find in
107
- the data protection dialog by clicking the button *Privacy Policy* or in the
108
- following sections of the respective providers.
109
-
110
- Necessary::
111
- Necessary data is stored in cookies to enable the basic services of this site
112
- to operate. This website *does not keep records* of their use. All information
113
- (data) necessary to control this page are stored in so-called *session cookies*.
114
- Session cookies are *automatically* removed from your browser when you have
115
- *closed* all the tabs in your browser.
116
-
117
- Analyses::
118
- Analyzing the use of this website helps us to improve your user experience of
119
- the website to optimize. Google Analytics (GA) is used for the analysis. This
120
- site does not transmit any personal data. Implicit personal data such as
121
- IP addresses are *anonymized* to protect your privacy.
122
-
123
- Personalization::
124
- Personalization is used, for example, to collect user feedback, offer
125
- additional functions, or carry out advertising campaigns. Revenue from
126
- advertising allows us to make this website available to you free of charge.
127
- Partners enable us to offer you excellent personalized services and
128
- finance the costs of running this website.
129
- endif::[]
130
-
131
-
132
- ifeval::[{cookie-consent} == true]
133
- [role="mt-5"]
134
- == Privacy and your settings
135
-
136
- If you want to set which *cookies* (and similar technologies) are used by
137
- this site, you can adjust your consent settings. You can also refuse cookies
138
- by using your *browser* accordingly. Please be careful when changing your
139
- browser settings. Rejecting on cookies can cause serious issues when visiting
140
- websites lead to the use of cookies. This does not only apply to the pages
141
- of this website.
142
-
143
- NOTE: Have you previously visited our website and agreed on the use of cookies,
144
- the data files created at this time may still stored on your system. In such
145
- cases, cookies already be present and needs to be *manually* deleted by
146
- functions of your browser.
147
-
148
- ++++
149
- <div class="mt-4 mb-4 d-grid gap-2">
150
- <a href="javascript:j1.cookieConsent.showDialog()"
151
- class="btn btn-info btn-flex btn-lg"
152
- aria-label="Cookie Consent">
153
- <i class="mdi mdi-cookie mdi-2x mr-2"></i>
154
- Your settings
155
- </a>
156
- </div>
157
- ++++
158
- endif::[]
159
-
160
-
161
- ifeval::[{themes} == true]
162
- [role="mt-5"]
163
- == Themes
164
-
165
- Themes for Bootstrap are used to customize the appearance of a website
166
- based on the basic rules and definitions of Bootstrap’s (CSS) styles. The
167
- use or change of a theme does not alter the functionality of the underlying
168
- Bootstrap framework but modifies, for example, the color scheme, fonts, or
169
- font sizes. Furthermore, the appearance of selected predefined HTML elements
170
- like buttons, forms, or navigation elements may be adapted by a theme.
171
-
172
- The underlying *Themer* Module uses the free themes for Bootstrap
173
- provided by _Bootswatch_. The platform provides a large number of different
174
- themes (pre-compiled BS@5 CSS files) to be directly used for websites using
175
- Bootstrap V5.
176
-
177
- The services at _Bootswatch_ use *permanent* Cookies to store relevant theme
178
- information. Therefore, to use the themes feature of J1 Template, you must
179
- agree on *permanent* Cookies for *personalization*.
180
- endif::[]
181
-
182
-
183
- ifeval::[{logs-files} == true]
184
- [role="mt-5"]
185
- == Log files
186
-
187
- We collect certain information automatically from our web servers and save them
188
- in log files on our servers. This information can be Internet Protocol (IP)
189
- addresses, browser type, Internet service provider (ISP), referral and exit
190
- pages, the operation system, time stamp and/or other clickstream data.
191
-
192
- These are:
193
-
194
- * Browser type and version
195
- * Operating system
196
- * URLs
197
- * Hostnames
198
- * Timestamps of pages viewed
199
-
200
- We can combine this log information with other information. We do this to
201
- improve the services we offer and to improve the content on our website.
202
- endif::[]
203
-
204
-
205
- ifeval::[{google-analytics} == true]
206
- [role="mt-5"]
207
- == Google Traffic analytics (GA)
208
-
209
- This website uses Google Analytics (GA), a data service for the analysis of
210
- user activity. This functionality is only available if you have given your
211
- consent on privacy settings for *analyzes*.
212
- This service is offered by:
213
-
214
- ----
215
- Google Inc.
216
- 1600 Amphitheatre Parkway Mountain View
217
- CA 94043
218
- USA
219
- ----
220
-
221
- The service uses so-called cookies. These are text files saved on your system
222
- to evaluate users for their activity on the website. The information generated
223
- by cookies will be transmitted to the provider and stored on the company's
224
- servers.
225
-
226
- This website uses *anonymization* of IP addresses. Network addresses of
227
- visitors out of the area of the European Union as well as other countries
228
- were contracting to the privacy regulations on the European Economic area
229
- shortened. Personal assignment of the data recorded is *not* possible.
230
-
231
- For more information, see the companies guidelines of the
232
- link:{url-google--privacy-policy-en}[Privacy Settings, {browser-window--new}].
233
-
234
- NOTE: You can object to its use at any time by selecting the appropriate
235
- settings with your privacy settings. Notice, however, that you may not be able
236
- to use the full functionality of this website in this case.
237
- endif::[]
238
-
239
-
240
- ifeval::[{google-ads} == true]
241
- [role="mt-5"]
242
- == Google Advertising (GAA)
243
-
244
- This website uses Google Ads (GAD), a data service for personalized
245
- advertising. This functionality is only available if you have given your
246
- consent on privacy settings for *personalization*.
247
- This service is offered by:
248
-
249
- ----
250
- Google Inc.
251
- 1600 Amphitheatre Parkway Mountain View
252
- CA 94043
253
- USA
254
- ----
255
-
256
- The service uses so-called cookies. These are text files saved on your system
257
- to evaluate users for their activity on the website. The information generated
258
- by cookies will be transmitted to the provider and stored on the company's
259
- servers.
260
-
261
- This website uses *anonymization* of IP addresses. Network addresses of
262
- visitors out of the area of the European Union as well as other countries
263
- were contracting to the privacy regulations on the European Economic area
264
- shortened. Personal assignment of the data recorded is *not* possible.
265
-
266
- For more information, see the companies guidelines of the
267
- link:{url-google--privacy-policy-en}[Privacy Settings, {browser-window--new}].
268
-
269
- NOTE: You can object to its use at any time by selecting the appropriate
270
- settings with your privacy settings. Notice, however, that you may not be able
271
- to use the full functionality of this website in this case.
272
- endif::[]
273
-
274
-
275
- ifeval::[{google-translator} == true]
276
- [role="mt-5"]
277
- == Google Translation (GT)
278
-
279
- This website uses Google Google Translator (GT), a service to translate the
280
- content of websites. This functionality is only available if you have given
281
- your consent on privacy settings for *personalization*.
282
- This service is offered by:
283
-
284
- ----
285
- Google Inc.
286
- 1600 Amphitheatre Parkway Mountain View
287
- CA 94043
288
- USA
289
- ----
290
-
291
- The service uses so-called cookies. These are text files saved *permanent*
292
- on your system process the website for translation. The information generated
293
- by cookies will be transmitted to the provider and stored on the company's
294
- servers.
295
-
296
- For more information, see the companies guidelines of the
297
- link:{url-google--privacy-policy-en}[Privacy Settings, {browser-window--new}].
298
-
299
- NOTE: You can object to its use at any time by selecting the appropriate
300
- settings with your privacy settings. Notice, however, that you may not be able
301
- to use the full functionality of this website in this case.
302
- endif::[]
303
-
304
-
305
- ifeval::[{hyvor} == true]
306
- [role="mt-5"]
307
- == Use of Comments (HT)
308
-
309
- On our pages, functions of the service *Hyvor Talk* (HT) may be embedded.
310
- This functionality is only available if you have given your consent on
311
- privacy settings for *personalization*.
312
- These services are offered by:
313
-
314
- ----
315
- Google Inc.
316
- 1600 Amphitheatre Parkway Mountain View
317
- CA 94043
318
- USA
319
- ----
320
-
321
- The *costs* for the provision of the service are paid by the *operator* of
322
- this website. The services of *Hyvor Talk* respect your privacy first. If you
323
- use commenting at Hyvor Talk, the platform will establish a direct link
324
- between your browser and the servers of the Hyvor company.
325
-
326
- If you are commenting on Hyvor, *no* tracking, advertising, affiliate, or any
327
- other *third party* codes are collected or transmitted. Personal data is
328
- never passed on to third parties.
329
-
330
- The service uses so-called cookies. These are text files saved on your system
331
- to evaluate the user's activity. The information generated by cookies will be
332
- transmitted to the provider and stored on the company's servers.
333
-
334
- For more information, see the companies guidelines of the
335
- https://hyvor.com/privacy-policy[Privacy Settings, {browser-window--new}].
336
-
337
- NOTE: You can object to its use at any time by selecting the appropriate
338
- settings with your privacy settings. Notice, however, that you may not be able
339
- to use the full functionality of this website in this case.
340
- endif::[]
341
-
342
-
343
- ifeval::[{facebook} == true]
344
- [role="mt-5"]
345
- == Use of the Facebook Integration
346
-
347
- On our pages, *functions* of the social network *Facebook* (HT) may be embedded.
348
- This functionality is only available if you have given your consent on privacy
349
- settings for *personalization*.
350
- These services are offered by:
351
-
352
- ----
353
- Facebook Inc.
354
- 1 Hacker Way Menlo Park
355
- CA 94025
356
- USA
357
- ----
358
-
359
- When you visit our website, the integration (*Like Button*) creates a direct
360
- connection between your browser and the provider's server. As a result,
361
- personal data is sent to the systems of the provider. The prerequisite
362
- for this is that you are logged in with your user account visiting our
363
- pages.
364
-
365
- The service uses so-called cookies. These are text files saved on your system
366
- to evaluate the user's activity. The information generated by cookies will be
367
- transmitted to the provider and stored on the company's servers.
368
- We point out that we, the operator, do not know about what data is transmitted
369
- as well as their use at the service provider.
370
-
371
- For more information, see the companies guidelines of the
372
- link:{url-facebook--privacy-policy-en}[Privacy Settings, {browser-window--new}].
373
-
374
- NOTE: You can object to its use at any time by selecting the appropriate
375
- settings with your privacy settings. Notice, however, that you may not be able
376
- to use the full functionality of this website in this case.
377
- endif::[]
378
-
379
-
380
- ifeval::[{twitter} == true]
381
- [role="mt-5"]
382
- == Use of the Twitter Integration
383
-
384
- On our pages, *functions* of the news network *Twitter* may be embedded.
385
- This functionality is only available if you have given your consent on
386
- privacy settings for *personalization*.
387
- These services are offered by:
388
-
389
- ----
390
- Twitter Inc.
391
- 1355 Market Street Suite 900
392
- CA 94103
393
- USA
394
- ----
395
-
396
- When you visit our website, the integration (*Re-Tweet*) creates a direct
397
- connection between your browser and the provider's server. As a result,
398
- personal data is sent to the systems of the provider. The prerequisite
399
- for this is that you are logged in with your user account visiting our
400
- pages.
401
-
402
- The service uses so-called cookies. These are text files saved on your system
403
- to evaluate the user's activity. The information generated by cookies will be
404
- transmitted to the provider and stored on the company's servers.
405
- We point out that we, the operator, do not know about what data is transmitted
406
- as well as their use at the service provider.
407
-
408
- For more information, see the companies guidelines of the
409
- link:{url-twitter--privacy-policy-en}[Privacy Settings, {browser-window--new}].
410
-
411
- NOTE: You can object to its use at any time by selecting the appropriate
412
- settings with your privacy settings. Notice, however, that you may not be able
413
- to use the full functionality of this website in this case.
414
- endif::[]
415
-
416
-
417
- ifeval::[{instagram} == true]
418
- [role="mt-5"]
419
- == Use of the Instagram Integration
420
-
421
- On our pages, *functions* of the social network *Instagram* may be embedded.
422
- This functionality is only available if you have given your consent on
423
- privacy settings for *personalization*.
424
- These services are offered by:
425
-
426
- ----
427
- Instagram Inc.
428
- 1601 Willow Road Menlo Park
429
- CA 94025
430
- USA
431
- ----
432
-
433
- When you visit our website, the integration (*Instagram Button*) creates a
434
- direct connection between your browser and the provider's server. As a result,
435
- personal data is sent to the systems of the provider. The prerequisite
436
- for this is that you are logged in with your user account visiting our
437
- pages.
438
- We point out that we, the operator, do not know about what data is transmitted
439
- as well as their use at the service provider.
440
-
441
- The service uses so-called cookies. These are text files saved on your system
442
- to evaluate the user's activity. The information generated by cookies will be
443
- transmitted to the provider and stored on the company's servers.
444
-
445
- For more information, see the companies guidelines of the
446
- link:{url-instagram--privacy-policy}[Privacy Settings, {browser-window--new}].
447
-
448
- NOTE: You can object to its use at any time by selecting the appropriate
449
- settings with your privacy settings. Notice, however, that you may not be able
450
- to use the full functionality of this website in this case.
451
- endif::[]
452
-
453
-
454
- ifeval::[{youtube} == true]
455
- [role="mt-5"]
456
- == Use of YouTube Videos (YTV)
457
-
458
- On our pages, *functions* (player) of the video platform *YouTube* (YT) may be
459
- embedded. This functionality is only available if you have given your consent
460
- on privacy settings for *personalization*.
461
- These services are offered by:
462
-
463
- ----
464
- Google Ireland Limited
465
- Gordon House, Barrow Street
466
- Dublin 4
467
- Irland
468
- ----
469
-
470
- When you visit our website, the integration (*Player*) creates a direct
471
- connection between your browser and the provider's server. In addition to the
472
- content (videos), personal data is transmitted to the servers of the company
473
- *YouTube*.
474
-
475
- The service uses so-called cookies. These are text files saved on your system
476
- to evaluate the user's activity. The information generated by cookies will be
477
- transmitted to the provider and stored on the company's servers.
478
- We point out that we, the operator, do not know about what data is transmitted
479
- as well as their use at the service provider.
480
-
481
- For more information, see the companies guidelines of the
482
- link:{url-google--privacy-policy-de}[Privacy Settings, {browser-window--new}].
483
-
484
- NOTE: You can object to its use at any time by selecting the appropriate
485
- settings with your privacy settings. Notice, however, that you may not be able
486
- to use the full functionality of this website in this case.
487
- endif::[]
488
-
489
-
490
- ifeval::[{vimeo} == true]
491
- [role="mt-5"]
492
- == Use of Vimeo Videos (VIV)
493
-
494
- On our pages, *functions* (player) of the video platform *Vimeo* (VI) may be
495
- embedded. This functionality is only available if you have given your consent
496
- on privacy settings for *personalization*.
497
- These services are offered by:
498
-
499
- ----
500
- Vimeo Inc.
501
- 555 West 18th Street
502
- NY 10011
503
- USA
504
- ----
505
-
506
- When you visit our website, the integration (*Player*) creates a direct
507
- connection between your browser and the provider's server. In addition to the
508
- content (videos), personal data is transmitted to the servers of the company
509
- *Vimeo*.
510
-
511
- The service uses so-called cookies. These are text files saved on your system
512
- to evaluate the user's activity. The information generated by cookies will be
513
- transmitted to the provider and stored on the company's servers.
514
- We point out that we, the operator, do not know about what data is transmitted
515
- as well as their use at the service provider.
516
-
517
- For more information, see the companies guidelines of the
518
- link:{url-vimeo--privacy-policy}[Privacy Settings, {browser-window--new}].
519
-
520
- NOTE: You can object to its use at any time by selecting the appropriate
521
- settings with your privacy settings. Notice, however, that you may not be able
522
- to use the full functionality of this website in this case.
523
- endif::[]
524
-
525
-
526
- ifeval::[{dailymotion} == true]
527
- [role="mt-5"]
528
- == Use of DailyMotion Videos (DMV)
529
-
530
- On our pages, *functions* (player) of the video platform *DailyMotion* (DMV)
531
- may be embedded. This functionality is only available if you have given your
532
- consent on privacy settings for *personalization*.
533
- These services are offered by:
534
-
535
- ----
536
- Dailymotion
537
- bd Malesherbes
538
- 75017 Paris
539
- France
540
- ----
541
-
542
- When you visit our website, the integration (*Player*) creates a direct
543
- connection between your browser and the provider's server. In addition to the
544
- content (videos), personal data is transmitted to the servers of the company
545
- *DailyMotion*.
546
-
547
- The service uses so-called cookies. These are text files saved on your system
548
- to evaluate the user's activity. The information generated by cookies will be
549
- transmitted to the provider and stored on the company's servers.
550
- We point out that we, the operator, do not know about what data is transmitted
551
- as well as their use at the service provider.
552
-
553
- For more information, see the companies guidelines of the
554
- link:{url-dailymotion--privacy-policy}[Privacy Settings, {browser-window--new}].
555
-
556
- NOTE: You can object to its use at any time by selecting the appropriate
557
- settings with your privacy settings. Notice, however, that you may not be able
558
- to use the full functionality of this website in this case.
559
- endif::[]
560
-
561
-
562
- ifeval::[{vk} == true]
563
- [role="mt-5"]
564
- == Use of VK Videos (VKV)
565
-
566
- On our pages, *functions* (player) of the video platform *VK* (VKV) may be
567
- embedded. This functionality is only available if you have given your consent
568
- on privacy settings for *personalization*.
569
- These services are offered by:
570
-
571
- ----
572
- Vkontakte LLC
573
- 5 Nevskiy Ave, 5th Floor
574
- 191186 Saint Petersburg
575
- Russia
576
- ----
577
-
578
- When you visit our website, the integration (*Player*) creates a direct
579
- connection between your browser and the provider's server. In addition to the
580
- content (videos), personal data is transmitted to the servers of the company
581
- *VK*.
582
-
583
- The service uses so-called cookies. These are text files saved on your system
584
- to evaluate the user's activity. The information generated by cookies will be
585
- transmitted to the provider and stored on the company's servers.
586
- We point out that we, the operator, do not know about what data is transmitted
587
- as well as their use at the service provider.
588
-
589
- For more information, see the companies guidelines of the
590
- link:{url-vk--privacy-policy}[Privacy Settings, {browser-window--new}].
591
-
592
- NOTE: You can object to its use at any time by selecting the appropriate
593
- settings with your privacy settings. Notice, however, that you may not be able
594
- to use the full functionality of this website in this case.
595
- endif::[]
1
+ ---
2
+ title: Privacy
3
+ tagline: Your Personal Data
4
+
5
+ date: 2023-01-01
6
+ #last_modified: 2023-01-01
7
+
8
+ description: >
9
+ J1 Template is a Bootstrap V5 website template for the static
10
+ site generator Jekyll.
11
+ The operators of this website take the protection of your personal data
12
+ seriously. We treat your data confidentially and protect your data privacy to
13
+ the General Data Protection Regulation (GDPR) of the European Union.
14
+
15
+ categories: [ Site ]
16
+ tags: [ Privacy, Policy ]
17
+
18
+ robots:
19
+ index: true
20
+ follow: true
21
+
22
+ image:
23
+ path: /assets/images/modules/attics/1920x1280/j1-starter-mockup-1.jpg
24
+ width: 1920
25
+ height: 1280
26
+
27
+ sitemap: false
28
+ exclude_from_search: true
29
+ regenerate: false
30
+ permalink: /pages/public/legal/en/privacy/
31
+
32
+ resources: [ animate, clipboard, comments, rouge ]
33
+ resource_options:
34
+ - attic:
35
+ slides:
36
+ - url: /assets/images/modules/attics/1920x1280/j1-starter-mockup-1.jpg
37
+ alt: J1 Starter Mockup
38
+ ---
39
+
40
+ // Page Initializer
41
+ // =============================================================================
42
+ // Enable the Liquid Preprocessor
43
+ :page-liquid:
44
+
45
+ // Set (local) page attributes here
46
+ // -----------------------------------------------------------------------------
47
+ // :page--attr: <attr-value>
48
+ :legal-warning: false
49
+
50
+ // Attribute settings for section control
51
+ //
52
+ :cookies: true
53
+ :cookie-consent: true
54
+ :themes: true
55
+ :logs-files: false
56
+ :google-analytics: true
57
+ :google-translator: true
58
+ :google-ads: false
59
+ :hyvor: true
60
+ :facebook: false
61
+ :twitter: false
62
+ :instagram: false
63
+ :youtube: true
64
+ :vimeo: true
65
+ :dailymotion: true
66
+ :vk: true
67
+
68
+ // Load Liquid procedures
69
+ // -----------------------------------------------------------------------------
70
+ {% capture load_attributes %}themes/{{site.template.name}}/procedures/global/attributes_loader.proc{%endcapture%}
71
+
72
+ // Load page attributes
73
+ // -----------------------------------------------------------------------------
74
+ {% include {{load_attributes}} scope="global" %}
75
+
76
+ ifeval::[{legal-warning} == true]
77
+ [WARNING]
78
+ ====
79
+ This document *does not* constitute any *legal advice*. It is
80
+ highly recommended to verify legal aspects and implications.
81
+ ====
82
+ endif::[]
83
+
84
+
85
+ // Page content
86
+ // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
87
+ [role="dropcap"]
88
+ The operators of this website take the protection of your personal data
89
+ seriously. We treat your data confidentially and protect your data privacy to
90
+ the General Data Protection Regulation GDPR of the European Union.
91
+
92
+ // Include sub-documents (if any)
93
+ // -----------------------------------------------------------------------------
94
+ ifeval::[{cookies} == true]
95
+ [role="mt-5"]
96
+ == Cookies
97
+
98
+ This website uses cookies and similar technologies for its operation
99
+ this offer. You are free to give your consent, refuse, or revoke by clicking on
100
+ the data protection dialog button.
101
+
102
+ Subsequent changes are possible *at any time* by clicking on the icon
103
+ mdi:cookie[24px, md-blue] placed top right in the *menu bar*.
104
+
105
+ [role="mb-4"]
106
+ *Advanced* third-party cookies are only used with your consent. Additional
107
+ cookies are used to analyze the website usage or to offer personalized content.
108
+ The evaluation of this information gives you a better user experience of the
109
+ offered content, such as additional functions. Further information you find in
110
+ the data protection dialog by clicking the button *Privacy Policy* or in the
111
+ following sections of the respective providers.
112
+
113
+ Necessary::
114
+ Necessary data is stored in cookies to enable the basic services of this site
115
+ to operate. This website *does not keep records* of their use. All information
116
+ data necessary to control this page are stored in so-called *session cookies*.
117
+ Session cookies are *automatically* removed from your browser when you have
118
+ *closed* all the tabs in your browser.
119
+
120
+ Analyses::
121
+ Analyzing the use of this website helps us to improve your user experience of
122
+ the website to optimize. Google Analytics GA is used for the analysis. This
123
+ site does not transmit any personal data. Implicit personal data such as
124
+ IP addresses are *anonymized* to protect your privacy.
125
+
126
+ Personalization::
127
+ Personalization is used, for example, to collect user feedback, offer
128
+ additional functions, or carry out advertising campaigns. Revenue from
129
+ advertising allows us to make this website available to you free of charge.
130
+ Partners enable us to offer you excellent personalized services and
131
+ finance the costs of running this website.
132
+ endif::[]
133
+
134
+
135
+ ifeval::[{cookie-consent} == true]
136
+ [role="mt-5"]
137
+ == Privacy Settings
138
+
139
+ If you want to set which *cookies* are used by this site, you can adjust your
140
+ consent settings. You can also refuse cookies by using your *browser*
141
+ accordingly. Please be careful when changing your browser settings. Rejecting
142
+ on cookies can cause serious issues when visiting websites lead to the use of
143
+ cookies. This does not only apply to the pages of this website.
144
+
145
+ [NOTE]
146
+ ====
147
+ Have you previously visited our website and agreed on the use of cookies,
148
+ the data files created at this time may still stored on your system. In such
149
+ cases, cookies already be present and needs to be *manually* deleted by
150
+ functions of your browser.
151
+ ====
152
+
153
+ ++++
154
+ <div class="mt-4 mb-4 d-grid gap-2">
155
+ <a href="javascript:j1.cookieConsent.showDialog()"
156
+ class="btn btn-info btn-flex btn-lg"
157
+ aria-label="Cookie Consent">
158
+ <i class="mdi mdi-cookie mdi-2x mr-2"></i>
159
+ Your settings
160
+ </a>
161
+ </div>
162
+ ++++
163
+ endif::[]
164
+
165
+
166
+ ifeval::[{themes} == true]
167
+ [role="mt-5"]
168
+ == Bootstrap Themes
169
+
170
+ Themes for Bootstrap are used to customize the appearance of a website
171
+ based on the basic rules and definitions of Bootstrap’s CSS styles. The
172
+ use or change of a theme does not alter the functionality of the underlying
173
+ Bootstrap framework but modifies, for example, the color scheme, fonts, or
174
+ font sizes. Furthermore, the appearance of selected predefined HTML elements
175
+ like buttons, forms, or navigation elements may be adapted by a theme.
176
+
177
+ The underlying *Themer* Module uses the free themes for Bootstrap
178
+ provided by _Bootswatch_. The platform provides a large number of different
179
+ themes, using pre-compiled CSS files, to be directly used for websites using
180
+ Bootstrap V5.
181
+
182
+ The services at _Bootswatch_ use *permanent* Cookies to store relevant theme
183
+ information. Therefore, to use the themes feature of J1 Template, you must
184
+ agree on *permanent* Cookies for *personalization*.
185
+ endif::[]
186
+
187
+
188
+ ifeval::[{logs-files} == true]
189
+ [role="mt-5"]
190
+ == Log files
191
+
192
+ We collect certain information automatically from our web servers and save them
193
+ in log files on our servers. This information can be Internet Protocol IP
194
+ addresses, browser type, Internet service provider ISP, referral and exit
195
+ pages, the operation system, time stamp and/or other clickstream data.
196
+
197
+ These are:
198
+
199
+ * Browser type and version
200
+ * Operating system
201
+ * URLs
202
+ * Hostnames
203
+ * Timestamps of pages viewed
204
+
205
+ We can combine this log information with other information. We do this to
206
+ improve the services we offer and to improve the content on our website.
207
+ endif::[]
208
+
209
+
210
+ ifeval::[{google-analytics} == true]
211
+ [role="mt-5"]
212
+ == Google Traffic Analytics
213
+
214
+ This website uses Google Analytics GA, a data service for the analysis of
215
+ user activity. This functionality is only available if you have given your
216
+ consent on privacy settings for *analyzes*.
217
+ This service is offered by:
218
+
219
+ ----
220
+ Google Inc.
221
+ 1600 Amphitheatre Parkway Mountain View
222
+ CA 94043
223
+ USA
224
+ ----
225
+
226
+ The service uses so-called cookies. These are text files saved on your system
227
+ to evaluate users for their activity on the website. The information generated
228
+ by cookies will be transmitted to the provider and stored on the company's
229
+ servers.
230
+
231
+ This website uses *anonymization* of IP addresses. Network addresses of
232
+ visitors out of the area of the European Union as well as other countries
233
+ were contracting to the privacy regulations on the European Economic area
234
+ shortened. Personal assignment of the data recorded is *not* possible.
235
+
236
+ For more information, see the companies guidelines of the
237
+ link:{url-google--privacy-policy-en}[Privacy Settings, {browser-window--new}].
238
+
239
+ [NOTE]
240
+ ====
241
+ You can object to its use at any time by selecting the appropriate
242
+ settings with your privacy settings. Notice, however, that you may not be able
243
+ to use the full functionality of this website in this case.
244
+ ====
245
+ endif::[]
246
+
247
+ ifeval::[{google-ads} == true]
248
+ [role="mt-5"]
249
+ == Google Advertising
250
+
251
+ This website uses Google Adsense GAD, a data service for personalized
252
+ advertising. This functionality is only available if you have given your
253
+ consent on privacy settings for *personalization*.
254
+ This service is offered by:
255
+
256
+ ----
257
+ Google Inc.
258
+ 1600 Amphitheatre Parkway Mountain View
259
+ CA 94043
260
+ USA
261
+ ----
262
+
263
+ The service uses so-called cookies. These are text files saved on your system
264
+ to evaluate users for their activity on the website. The information generated
265
+ by cookies will be transmitted to the provider and stored on the company's
266
+ servers.
267
+
268
+ This website uses *anonymization* of IP addresses. Network addresses of
269
+ visitors out of the area of the European Union as well as other countries
270
+ were contracting to the privacy regulations on the European Economic area
271
+ shortened. Personal assignment of the data recorded is *not* possible.
272
+
273
+ For more information, see the companies guidelines of the
274
+ link:{url-google--privacy-policy-en}[Privacy Settings, {browser-window--new}].
275
+
276
+ [NOTE]
277
+ ====
278
+ You can object to its use at any time by selecting the appropriate
279
+ settings with your privacy settings. Notice, however, that you may not be able
280
+ to use the full functionality of this website in this case.
281
+ ====
282
+ endif::[]
283
+
284
+
285
+ ifeval::[{google-translator} == true]
286
+ [role="mt-5"]
287
+ == Google Translation
288
+
289
+ This website uses Google Google Translator GT, a service to translate the
290
+ content of websites. This functionality is only available if you have given
291
+ your consent on privacy settings for *personalization*.
292
+ This service is offered by:
293
+
294
+ ----
295
+ Google Inc.
296
+ 1600 Amphitheatre Parkway Mountain View
297
+ CA 94043
298
+ USA
299
+ ----
300
+
301
+ The service uses so-called cookies. These are text files saved *permanent*
302
+ on your system process the website for translation. The information generated
303
+ by cookies will be transmitted to the provider and stored on the company's
304
+ servers.
305
+
306
+ For more information, see the companies guidelines of the
307
+ link:{url-google--privacy-policy-en}[Privacy Settings, {browser-window--new}].
308
+
309
+ [NOTE]
310
+ ====
311
+ You can object to its use at any time by selecting the appropriate
312
+ settings with your privacy settings. Notice, however, that you may not be able
313
+ to use the full functionality of this website in this case.
314
+ ====
315
+ endif::[]
316
+
317
+
318
+ ifeval::[{hyvor} == true]
319
+ [role="mt-5"]
320
+ == Comments
321
+
322
+ On our pages, functions of the service *Hyvor Talk* HT may be embedded.
323
+ This functionality is only available if you have given your consent on
324
+ privacy settings for *personalization*.
325
+ These services are offered by:
326
+
327
+ ----
328
+ Google Inc.
329
+ 1600 Amphitheatre Parkway Mountain View
330
+ CA 94043
331
+ USA
332
+ ----
333
+
334
+ The *costs* for the provision of the service are paid by the *operator* of
335
+ this website. The services of *Hyvor Talk* respect your privacy first. If you
336
+ use commenting at Hyvor Talk, the platform will establish a direct link
337
+ between your browser and the servers of the Hyvor company.
338
+
339
+ If you are commenting on Hyvor, *no* tracking, advertising, affiliate, or any
340
+ other *third party* codes are collected or transmitted. Personal data is
341
+ never passed on to third parties.
342
+
343
+ The service uses so-called cookies. These are text files saved on your system
344
+ to evaluate the user's activity. The information generated by cookies will be
345
+ transmitted to the provider and stored on the company's servers.
346
+
347
+ For more information, see the companies guidelines of the
348
+ https://hyvor.com/privacy-policy[Privacy Settings, {browser-window--new}].
349
+
350
+ [NOTE]
351
+ ====
352
+ You can object to its use at any time by selecting the appropriate
353
+ settings with your privacy settings. Notice, however, that you may not be able
354
+ to use the full functionality of this website in this case.
355
+ ====
356
+ endif::[]
357
+
358
+
359
+ ifeval::[{facebook} == true]
360
+ [role="mt-5"]
361
+ == Facebook Integration
362
+
363
+ On our pages, *functions* of the social network *Facebook* may be embedded.
364
+ This functionality is only available if you have given your consent on privacy
365
+ settings for *personalization*.
366
+ These services are offered by:
367
+
368
+ ----
369
+ Facebook Inc.
370
+ 1 Hacker Way Menlo Park
371
+ CA 94025
372
+ USA
373
+ ----
374
+
375
+ When you visit our website, the integration, the *Like Button*, creates
376
+ a direct connection between your browser and the provider's server. As a
377
+ result, personal data is sent to the systems of the provider. The prerequisite
378
+ for this is that you are logged in with your user account visiting our
379
+ pages.
380
+
381
+ The service uses so-called cookies. These are text files saved on your system
382
+ to evaluate the user's activity. The information generated by cookies will be
383
+ transmitted to the provider and stored on the company's servers.
384
+ We point out that we, the operator, do not know about what data is transmitted
385
+ as well as their use at the service provider.
386
+
387
+ For more information, see the companies guidelines of the
388
+ link:{url-facebook--privacy-policy-en}[Privacy Settings, {browser-window--new}].
389
+
390
+ [NOTE]
391
+ ====
392
+ You can object to its use at any time by selecting the appropriate
393
+ settings with your privacy settings. Notice, however, that you may not be able
394
+ to use the full functionality of this website in this case.
395
+ ====
396
+ endif::[]
397
+
398
+
399
+ ifeval::[{twitter} == true]
400
+ [role="mt-5"]
401
+ == Twitter Integration
402
+
403
+ On our pages, *functions* of the news network *Twitter* may be embedded.
404
+ This functionality is only available if you have given your consent on
405
+ privacy settings for *personalization*.
406
+ These services are offered by:
407
+
408
+ ----
409
+ Twitter Inc.
410
+ 1355 Market Street Suite 900
411
+ CA 94103
412
+ USA
413
+ ----
414
+
415
+ When you visit our website, the integration, the *Re-Tweet* function, creates
416
+ a direct connection between your browser and the provider's server. As a
417
+ result, personal data is sent to the systems of the provider. The prerequisite
418
+ for this is that you are logged in with your user account visiting our
419
+ pages.
420
+
421
+ The service uses so-called cookies. These are text files saved on your system
422
+ to evaluate the user's activity. The information generated by cookies will be
423
+ transmitted to the provider and stored on the company's servers.
424
+ We point out that we, the operator, do not know about what data is transmitted
425
+ as well as their use at the service provider.
426
+
427
+ For more information, see the companies guidelines of the
428
+ link:{url-twitter--privacy-policy-en}[Privacy Settings, {browser-window--new}].
429
+
430
+ [NOTE]
431
+ ====
432
+ You can object to its use at any time by selecting the appropriate
433
+ settings with your privacy settings. Notice, however, that you may not be able
434
+ to use the full functionality of this website in this case.
435
+ ====
436
+ endif::[]
437
+
438
+
439
+ ifeval::[{instagram} == true]
440
+ [role="mt-5"]
441
+ == Instagram Integration
442
+
443
+ On our pages, *functions* of the social network *Instagram* may be embedded.
444
+ This functionality is only available if you have given your consent on
445
+ privacy settings for *personalization*.
446
+ These services are offered by:
447
+
448
+ ----
449
+ Instagram Inc.
450
+ 1601 Willow Road Menlo Park
451
+ CA 94025
452
+ USA
453
+ ----
454
+
455
+ When you visit our website, the integration, the *Instagram Button*, creates a
456
+ direct connection between your browser and the provider's server. As a result,
457
+ personal data is sent to the systems of the provider. The prerequisite
458
+ for this is that you are logged in with your user account visiting our
459
+ pages.
460
+ We point out that we, the operator, do not know about what data is transmitted
461
+ as well as their use at the service provider.
462
+
463
+ The service uses so-called cookies. These are text files saved on your system
464
+ to evaluate the user's activity. The information generated by cookies will be
465
+ transmitted to the provider and stored on the company's servers.
466
+
467
+ For more information, see the companies guidelines of the
468
+ link:{url-instagram--privacy-policy}[Privacy Settings, {browser-window--new}].
469
+
470
+ [NOTE]
471
+ ====
472
+ You can object to its use at any time by selecting the appropriate
473
+ settings with your privacy settings. Notice, however, that you may not be able
474
+ to use the full functionality of this website in this case.
475
+ ====
476
+ endif::[]
477
+
478
+
479
+ ifeval::[{youtube} == true]
480
+ [role="mt-5"]
481
+ == YouTube Videos
482
+
483
+ On our pages, the *player* of the video platform *YouTube* YT may be embedded.
484
+ This functionality is only available if you have given your consent on privacy
485
+ settings for *personalization*.
486
+
487
+ These services are offered by:
488
+
489
+ ----
490
+ Google Ireland Limited
491
+ Gordon House, Barrow Street
492
+ Dublin 4
493
+ Irland
494
+ ----
495
+
496
+ When you visit our website, the *player* creates a direct connection between
497
+ your browser and the provider's server. In addition to the content, personal
498
+ data is transmitted to the servers of the company *YouTube*.
499
+
500
+ The service uses so-called cookies. These are text files saved on your system
501
+ to evaluate the user's activity. The information generated by cookies will be
502
+ transmitted to the provider and stored on the company's servers.
503
+ We point out that we, the operator, do not know about what data is transmitted
504
+ as well as their use at the service provider.
505
+
506
+ For more information, see the companies guidelines of the
507
+ link:{url-google--privacy-policy-de}[Privacy Settings, {browser-window--new}].
508
+
509
+ [NOTE]
510
+ ====
511
+ You can object to its use at any time by selecting the appropriate
512
+ settings with your privacy settings. Notice, however, that you may not be able
513
+ to use the full functionality of this website in this case.
514
+ ====
515
+ endif::[]
516
+
517
+
518
+ ifeval::[{vimeo} == true]
519
+ [role="mt-5"]
520
+ == Vimeo Videos
521
+
522
+ On our pages, the *player* of the video platform *Vimeo* VIV may be embedded.
523
+ This functionality is only available if you have given your consent on privacy
524
+ settings for *personalization*.
525
+
526
+ These services are offered by:
527
+
528
+ ----
529
+ Vimeo Inc.
530
+ 555 West 18th Street
531
+ NY 10011
532
+ USA
533
+ ----
534
+
535
+ When you visit our website, the *player* creates a direct connection between
536
+ your browser and the provider's server. In addition to the content, personal
537
+ data is transmitted to the servers of the company *Vimeo*.
538
+
539
+ The service uses so-called cookies. These are text files saved on your system
540
+ to evaluate the user's activity. The information generated by cookies will be
541
+ transmitted to the provider and stored on the company's servers.
542
+ We point out that we, the operator, do not know about what data is transmitted
543
+ as well as their use at the service provider.
544
+
545
+ For more information, see the companies guidelines of the
546
+ link:{url-vimeo--privacy-policy}[Privacy Settings, {browser-window--new}].
547
+
548
+ [NOTE]
549
+ ====
550
+ You can object to its use at any time by selecting the appropriate
551
+ settings with your privacy settings. Notice, however, that you may not be able
552
+ to use the full functionality of this website in this case.
553
+ ====
554
+ endif::[]
555
+
556
+
557
+ ifeval::[{dailymotion} == true]
558
+ [role="mt-5"]
559
+ == DailyMotion Videos
560
+
561
+ On our pages,the *player* of the video platform *DailyMotion* DMV may be embedded.
562
+ This functionality is only available if you have given your consent on privacy
563
+ settings for *personalization*.
564
+
565
+ These services are offered by:
566
+
567
+ ----
568
+ Dailymotion
569
+ bd Malesherbes
570
+ 75017 Paris
571
+ France
572
+ ----
573
+
574
+ When you visit our website, the *player* creates a direct connection between
575
+ your browser and the provider's server. In addition to the content, personal
576
+ data is transmitted to the servers of the company *DailyMotion*.
577
+
578
+ The service uses so-called cookies. These are text files saved on your system
579
+ to evaluate the user's activity. The information generated by cookies will be
580
+ transmitted to the provider and stored on the company's servers.
581
+ We point out that we, the operator, do not know about what data is transmitted
582
+ as well as their use at the service provider.
583
+
584
+ For more information, see the companies guidelines of the
585
+ link:{url-dailymotion--privacy-policy}[Privacy Settings, {browser-window--new}].
586
+
587
+ [NOTE]
588
+ ====
589
+ You can object to its use at any time by selecting the appropriate
590
+ settings with your privacy settings. Notice, however, that you may not be able
591
+ to use the full functionality of this website in this case.
592
+ ====
593
+ endif::[]
594
+
595
+
596
+ ifeval::[{vk} == true]
597
+ [role="mt-5"]
598
+ == VK Videos
599
+
600
+ On our pages, the *player* of the video platform *VK* may be embedded. This
601
+ functionality is only available if you have given your consent on privacy
602
+ settings for *personalization*.
603
+
604
+ These services are offered by:
605
+
606
+ ----
607
+ Vkontakte LLC
608
+ 5 Nevskiy Ave, 5th Floor
609
+ 191186 Saint Petersburg
610
+ Russia
611
+ ----
612
+
613
+ When you visit our website, the *player* creates a direct connection between
614
+ your browser and the provider's server. In addition to the content, personal
615
+ data is transmitted to the servers of the company *VK*.
616
+
617
+ The service uses so-called cookies. These are text files saved on your system
618
+ to evaluate the user's activity. The information generated by cookies will be
619
+ transmitted to the provider and stored on the company's servers.
620
+ We point out that we, the operator, do not know about what data is transmitted
621
+ as well as their use at the service provider.
622
+
623
+ For more information, see the companies guidelines of the
624
+ link:{url-vk--privacy-policy}[Privacy Settings, {browser-window--new}].
625
+
626
+ [NOTE]
627
+ ====
628
+ You can object to its use at any time by selecting the appropriate
629
+ settings with your privacy settings. Notice, however, that you may not be able
630
+ to use the full functionality of this website in this case.
631
+ ====
632
+ endif::[]