-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbadVideo.html
75 lines (59 loc) · 2.16 KB
/
badVideo.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>The Nostalgia Machine</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="../css/style.css">
<script src="../bower_components/jQuery/dist/jquery.min.js"></script>
<link href="http://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet" type="text/css">
<script src="https://use.fontawesome.com/0f4eef4a59.js"></script>
</head>
<body>
<header class="big">
<a href="/"><h1>The<br> Nostalgia<br> Machine</h1></a>
</header>
<section>
<h3>1. Does the video show an error message like this.</h3>
<img src="img/badCountry.jpg">
<p>If it does, sorry we can't fix that. Almost every video is blocked in one country or another, if we changed it to work for you, it'd break for somebody else.</p>
<h3>2. Is the video private, removed, or has the account been terminated?</h3>
<p>Then we can probably fix that.</p>
<h3>3. Is the video not the actual song, or the incorrect song?</h3>
<p>Then we can also fix that</p>
<hr>
<h3>Fixing through github</h3>
<p>Clone <a href="https://github.com/EliotSlevin/NostalgiaMachine">the repo</a>, go to app/js/years, and find the year of the broken video. Put in a new youtube video ID and send us a pull request :)</p>
<p>Github is the fastest way for us to fix errors</p>
<h3>Fixing via email</h3>
<p>Send us an email at swag@swag.com. Please state the year, artist, and song name for each bad video, and supply a youtube link which is working for you :) </p>
<h3>Thank you!</h3>
</section>
</body>
<style type="text/css">
section{
max-width: 600px;
margin-top: 200px;
margin-left: auto;
margin-right: auto;
background-color: white;
padding: 20px;
}
section img{
width: 100%;
}
header a{
color: white;
text-decoration: none;
}
header a:hover{
text-decoration: underline;
}
hr{
background-color: rgba(0,0,0,0.1);
height: 1px;
border: 1px;
}
</style>
</html>