yellowcab/template/home.tmpl

37 lines
744 B
Cheetah

<!DOCTYPE html>
<html>
<head>
<title>YellowCab</title>
{{ template "partials/head" }}
<link rel="stylesheet" href="/css/page.css" />
<style>
main {
text-align: center;
justify-items: center;
}
h1 {
margin-bottom: 1rem;
}
p {
margin-bottom: 1rem;
}
.create-button {
margin-top: 1.5rem;
}
</style>
</head>
<body>
<main>
<a href="/"><h1>YellowCab</h1></a>
<p>Embed what you're listening to right into your website!</p>
<iframe
allowtransparency="true"
class="preview"
src="/embed/fake/fake?force-theme=dark&autorefresh=0"
></iframe>
<a class="button create-button" href="/create">Make your own!</a>
</main>
{{ template "partials/footer" }}
</body>
</html>