-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
73 lines (67 loc) · 1.91 KB
/
footer.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!-- Footer, icluded on each page
Easy to modify just this one file to make changes on all pages
-->
<footer>
<div class="wrapper">
<div class="inner">
<div class="column">
<p>Facebook Headquarters<br>
Hacker Way 1<br>
CA 94025<br>
USA</p>
</div>
<div class="column">
<p>Twitter Headquarters<br>
1355 Market St #900<br>
CA 94103<br>
USA</p>
</div>
<div class="column">
<p>Google Headquarters<br>
1600 Amphitheatre Pkwy<br>
CA 94043<br>
USA</p>
</div>
<div class="column">
<p>(+358) 044 262 7686<br>
eepi1994@hotmail.com</p>
<div class="social-media">
<a class="icon icon-facebook" target="_blank" href="https://www.facebook.com"></a>
<a class="icon icon-twitter" target="_blank" href="https://twitter.com"></a>
<a class="icon icon-linkedin" target="_blank" href="https://www.linkedin.com"></a>
</div>
</div>
</div>
<div class="inner">
<div id="contact" class="anchor"></div>
<?php
// Check what language is selected and use the contact form for it
if(isset($_GET['lang'])) {
if ($_GET['lang'] == "en") {
include("partials/contact_en.php");
} else {
include("partials/contact_fi.php");
}
} else {
include("partials/contact_en.php");
exit;
}
?>
</div>
</div>
<div class="bottom">
<span>© Erik Vänttinen 2019</span>
</div>
</footer>
<div id="cookie-bar">
<div class="left-side">
<span>Warning - evil cookies!</span><br>
<i>By allowing these cookies, we will do cool stuff. <b>Trust me.</b></i>
</div>
<a id="cookie-btn">OK</a>
</div>
<a id="nocookies">Delete cookies</a>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="assets/scripts/main.js"></script>
</body>
</html>