This repository has been archived by the owner on May 31, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
commons.php
99 lines (83 loc) · 2.74 KB
/
commons.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<?php
function doHeader() {
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Linux Presentation Day [IT]</title>
<meta property="og:site_name" content="Linux Presentation Day" />
<meta property="og:title" content="Linux Presentation Day" />
<meta property="og:url" content="http://www.linux-presentation-day.it/" />
<meta property="og:image" content="http://www.linux-presentation-day.it/images/fb.png" />
<meta property="og:type" content="website" />
<meta property="og:country-name" content="Italy" />
<meta property="og:email" content="[email protected]" />
<meta property="og:locale" content="it_IT" />
<link href="css/bootstrap.min.css" rel="stylesheet" />
<link href="css/leaflet.css" rel="stylesheet" />
<script src="js/leaflet.js"></script>
<script src="js/jquery-2.1.1.min.js"></script>
<style>
.logo {
background-image: url(images/people.png);
background-position: center;
background-repeat: no-repeat;
}
#map {
width: 100%;
height: 500px;
}
</style>
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<br/>
<div class="row">
<div class="col-md-12">
<div class="jumbotron text-center">
<div class="logo">
<a href="index.php"><img src="images/logo.png"></a>
</div>
<h1>Linux Presentation Day</h1>
<p>Il 30 aprile, in tutta Europa,<br/>una occasione per conoscere e far conoscere Linux ed il software libero.</p>
</div>
</div>
</div>
<?php
}
function doFooter() {
?>
<hr/>
<div class="row">
<div class="col-md-12 well text-right">
<p>Powered by <a href="http://linux-presentation-day.org/">Linux Presentation Day</a> and <a href="http://www.ils.org/">Italian Linux Society</a></p>
</div>
</div>
</div>
<!-- Piwik -->
<script type="text/javascript">
var _paq = _paq || [];
_paq.push(['disableCookies']);
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="//pergamena.lugbs.linux.it/";
_paq.push(['setTrackerUrl', u+'piwik.php']);
_paq.push(['setSiteId', 22]);
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<noscript><p><img src="//pergamena.lugbs.linux.it/piwik.php?idsite=22" style="border:0;" alt="" /></p></noscript>
<!-- End Piwik Code -->
</body>
</html>
<?php
}