2014-11-30 12:21:03 +00:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
2014-12-02 18:34:31 +00:00
|
|
|
<title>Match Audio</title>
|
2014-11-30 12:21:03 +00:00
|
|
|
<meta name="description" content="">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
|
2014-12-03 23:32:49 +00:00
|
|
|
<link href='//fonts.googleapis.com/css?family=Open+Sans:400,300,700' rel='stylesheet' type='text/css'>
|
2014-11-30 12:21:03 +00:00
|
|
|
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css">
|
2014-12-03 23:03:34 +00:00
|
|
|
<link rel="stylesheet" href="/stylesheets/style.css">
|
2014-11-30 12:21:03 +00:00
|
|
|
</head>
|
2014-12-03 23:03:34 +00:00
|
|
|
<body class="home">
|
|
|
|
<header>
|
|
|
|
<h1><a href="/">match<span class="audio-lighten">.audio</span></a></h1>
|
|
|
|
</header>
|
2014-11-30 12:21:03 +00:00
|
|
|
<div class="container">
|
2014-12-04 00:35:04 +00:00
|
|
|
|
2014-12-03 23:03:34 +00:00
|
|
|
<div class="row share-form">
|
|
|
|
<div class="col-md-6 col-md-offset-3">
|
2014-12-04 00:35:04 +00:00
|
|
|
<% if (error.length > 0) { %>
|
|
|
|
<p class="alert alert-danger"><%= error %></p>
|
|
|
|
<% } %>
|
|
|
|
|
|
|
|
<form role="form" method="post" action="/search">
|
|
|
|
<div class="input-group input-group-lg">
|
2014-12-04 23:50:45 +00:00
|
|
|
<input type="text" name="url" placeholder="Paste link here" class="form-control" autofocus>
|
2014-12-04 00:35:04 +00:00
|
|
|
<span class="input-group-btn">
|
2014-12-04 13:01:45 +00:00
|
|
|
<input type="submit" class="btn btn-lg btn-custom" value="Share Music">
|
2014-12-04 00:35:04 +00:00
|
|
|
</span>
|
|
|
|
</div>
|
2014-12-01 12:41:26 +00:00
|
|
|
</form>
|
|
|
|
</div>
|
2014-11-30 12:21:03 +00:00
|
|
|
</div>
|
2014-12-04 00:35:04 +00:00
|
|
|
|
2014-11-30 12:21:03 +00:00
|
|
|
<div class="row">
|
2014-12-03 23:03:34 +00:00
|
|
|
<div class="col-md-6 col-md-offset-3">
|
2014-12-04 23:28:19 +00:00
|
|
|
<p>Make sharing from music services better.
|
|
|
|
We match album and track links from Rdio, Spotify, Deezer, Beats Music, Google Music and iTunes and give you back a link with all of them.</p>
|
2014-12-04 23:50:45 +00:00
|
|
|
<% var sample = samples[Math.floor(Math.random() * samples.length)] %>
|
|
|
|
<p><a href="<%= sample.url %>">Here's an example with <%= sample.artist %>'s <%= sample.album %></a>.</p>
|
2014-11-30 12:21:03 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|