2018-03-13 20:25:39 +00:00
|
|
|
<!-- This is a static file -->
|
|
|
|
<!-- served from your routes in server.js -->
|
|
|
|
|
|
|
|
<!-- You might want to try something fancier: -->
|
|
|
|
<!-- html/nunjucks docs: https://mozilla.github.io/nunjucks/ -->
|
|
|
|
<!-- pug: https://pugjs.org/ -->
|
|
|
|
<!-- haml: http://haml.info/ -->
|
|
|
|
<!-- hbs(handlebars): http://handlebarsjs.com/ -->
|
|
|
|
|
|
|
|
<!DOCTYPE html>
|
2018-03-19 20:41:05 +00:00
|
|
|
<html lang="en">
|
2018-03-13 20:25:39 +00:00
|
|
|
<head>
|
|
|
|
<title>Welcome to Glitch!</title>
|
|
|
|
<meta name="description" content="A cool thing made with Glitch">
|
|
|
|
<link id="favicon" rel="icon" href="https://glitch.com/edit/favicon-app.ico" type="image/x-icon">
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2018-03-19 21:03:02 +00:00
|
|
|
|
|
|
|
<script src="/vanilla-client.js" defer></script>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- import the webpage's stylesheet -->
|
|
|
|
<link rel="stylesheet" href="/styles.css">
|
|
|
|
|
|
|
|
<!-- import the webpage's javascript file -->
|
|
|
|
<script src="/vanilla-client.js" defer></script>
|
2018-03-13 20:25:39 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<header>
|
|
|
|
<h1>
|
|
|
|
A Dream of the Future
|
|
|
|
</h1>
|
|
|
|
</header>
|
|
|
|
|
|
|
|
<main>
|
|
|
|
<p class="bold">Oh hi,</p>
|
2018-03-19 21:03:02 +00:00
|
|
|
|
2018-03-13 20:25:39 +00:00
|
|
|
<p>Tell me your hopes and dreams:</p>
|
2018-03-19 21:03:02 +00:00
|
|
|
|
2018-03-13 20:25:39 +00:00
|
|
|
<form>
|
2018-03-19 21:03:02 +00:00
|
|
|
<input name="dream" type="text" maxlength="100" placeholder="Dreams!" aria-labelledby="submit-dream">
|
2018-03-19 20:52:00 +00:00
|
|
|
|
2018-03-19 21:03:02 +00:00
|
|
|
<button type="submit" id="submit-dream">Submit Dream</button>
|
2018-03-13 20:25:39 +00:00
|
|
|
</form>
|
2018-03-19 21:03:02 +00:00
|
|
|
|
2018-03-13 20:25:39 +00:00
|
|
|
<section class="dreams">
|
|
|
|
<ul id="dreams">
|
|
|
|
</ul>
|
|
|
|
</section>
|
|
|
|
</main>
|
|
|
|
|
|
|
|
<footer>
|
2018-03-19 21:03:02 +00:00
|
|
|
Made with <a href="https://glitch.com">Glitch</a>
|
2018-03-13 20:25:39 +00:00
|
|
|
</footer>
|
|
|
|
|
2018-03-19 20:52:00 +00:00
|
|
|
|
2018-03-14 22:04:45 +00:00
|
|
|
|
2018-03-19 20:41:05 +00:00
|
|
|
<!-- include the Glitch button to show what the webpage is about and
|
|
|
|
to make it easier for folks to view source and remix -->
|
2018-03-14 22:04:45 +00:00
|
|
|
<div class="glitchButton" style="position:fixed;top:20px;right:20px;"></div>
|
2018-03-19 20:41:05 +00:00
|
|
|
<script src="https://button.glitch.me/button.js"></script>
|
2018-03-13 20:25:39 +00:00
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|