-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
104 lines (71 loc) · 4.16 KB
/
index.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
99
100
101
102
103
104
<?php
if(!isset($_GET["name"])) $name = "party";
else $name=$_GET["name"];
if(!isset($_GET["bg"])) $bg = 1;
else $bg=$_GET["bg"];
if(!isset($_GET["font"])) $font = "inherit";
else $font=$_GET["font"];
if(!isset($_GET["count"])) $count = 1;
else $count=$_GET["count"];
?>
<!DOCTYPE html>
<!-- saved from url=(0043)file:///home/nixo/temp/zoffposter/zoff.html -->
<html lang="en"><head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb#"><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| Zöff |
| Project is on github: https://github.com/zoff-music/Zoff |
| Made by: Nicolas Almagro Tonne and Kasper Rynning-Tønnesen |
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<title><?php print($name);?></title>
<meta name="author" content="Nicolas 'Nixo' Almagro Tonne & Kasper 'KasperRT' Rynning-Tønnesen">
<meta name="description" content="The Shared (free) YouTube radio. Being built around the YouTube search and video API it enables the creation of collaborative and shared live playlists, with billions of videos and songs to choose from, all for free and without registration. Enjoy!">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no">
<meta charset="UTF-8">
<meta name="theme-color" content="#2D2D2D">
<meta property="og:image" content="/static/images/highlogo.png">
<meta property="og:title" content="Zöff">
<meta property="og:description" content="The Shared (free) YouTube radio. Being built around the YouTube search and video API it enables the creation of collaborative and shared live playlists, with billions of videos and songs to choose from, all for free and without registration. Enjoy!">
<meta property="og:type" content="website">
<link rel="stylesheet" href="./zoff_files/jquery-ui.min.css">
<link type="text/css" rel="stylesheet" href="./zoff_files/materialize.min.css">
<link rel="stylesheet" type="text/css" href="./zoff_files/stylesheet.css" title="Default">
<link rel="stylesheet" type="text/css" href="./zoff_files/style.css" title="Default">
<link rel="icon" id="favicon" type="image/png" href="http://zoff.no/static/images/favicon.png">
<script async="" src="file://www.google-analytics.com/analytics.js"></script><script async="" src="http://www.google-analytics.com/analytics.js"></script><script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-64341767-1', 'auto');
ga('send', 'pageview');
</script></head>
<body>
<header>
<nav id="fp-nav">
<div class="nav-wrapper">
<a href="http://zoff.no/#" class="brand-logo hide-on-small-only noselect">
<img id="zicon" src="./zoff_files/squareicon_small.png" alt="zöff" title="Zöff">
</a>
<a href="file:///home/nixo/temp/zoffposter/zoff_files/zoff.html" class="brand-logo" style="
padding-left: 80px;
font-size: 44px;
display: none;
">öff</a>
</div>
</nav>
</header>
<div class="section mega">
<div class="section mega" style="font-family: <?php print($font);?>">
<div id="mega-background" class="bg bg<?php print($bg); ?>"></div>
<h5><?php
for ($i=0; $i < $count; $i++) {
print($name."<br>");
}
?></h5>
<h4>zoff.no</h4>
</div>
</div>
<script type="text/javascript" src="./zoff_files/jquery.min.js"></script>
<script type="text/javascript" src="./zoff_files/jquery-ui.min.js"></script>
<script type="text/javascript" src="./zoff_files/materialize.min.js"></script>
<div class="hiddendiv common"></div></body></html>