-
Notifications
You must be signed in to change notification settings - Fork 3
/
imprint.php
38 lines (35 loc) · 1.23 KB
/
imprint.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
include_once('header.php');
?>
<h2 class="page_title">Imprint</h2>
<p>
Under German law we are obligated to publish the following information:
<br><br>
Accountable for the content according to §5 TMG
<br><br>
<strong>Battlegrounds Know-How</strong>
<br><br>
Oliver Nemet<br>
Am Wasserturm 23<br>
24943 Flensburg<br>
Germany<br>
<br>
Fax: +49 (0) 461 59362220<br>
E-Mail: <a href="mailto:[email protected]">[email protected]</a>
<br><br>
So that this was not a totally wasted click, here is my <a href="https://letterboxd.com/Zorc/" target="_blank">Letterboxd profile</a> and pictures of my cats. ;-)
</p>
<div class="cats" style="width: fit-content; margin-top: 65px;">
<div>
<img src="<?= PICTURE_LOCAL ?>misc/cat_mia2.webp" title="Mia" alt="My cat called Mia">
</div>
<div>
<img src="<?= PICTURE_LOCAL ?>misc/cat_yuna3.webp" title="Yuna" alt="My cat called Yuna">
</div>
<div>
<img src="<?= PICTURE_LOCAL ?>misc/cat_kiru2.webp" title="Kiru" alt="My cat called Kiru">
</div>
</div>
<?php
include_once('footer.php');
?>