2019-09-29 18:53:20 -06:00
|
|
|
<!DOCTYPE html>
|
2019-09-30 11:17:07 -06:00
|
|
|
|
2019-09-29 18:53:20 -06:00
|
|
|
<html>
|
2019-09-30 11:17:07 -06:00
|
|
|
|
2019-09-29 18:53:20 -06:00
|
|
|
<head>
|
2019-10-08 18:10:51 -06:00
|
|
|
<title>Weather</title>
|
|
|
|
|
<link rel="icon" href="/img/weather.png">
|
2019-09-30 11:17:07 -06:00
|
|
|
<link rel="stylesheet" href="/css/styles.css">
|
2019-09-29 18:53:20 -06:00
|
|
|
</head>
|
2019-09-30 11:17:07 -06:00
|
|
|
|
2019-09-29 18:53:20 -06:00
|
|
|
<body>
|
2019-10-08 18:10:51 -06:00
|
|
|
<div class="main-content">
|
2019-10-05 18:06:33 -06:00
|
|
|
{{>header}}
|
2019-10-10 12:30:22 -06:00
|
|
|
|
2019-10-08 18:10:51 -06:00
|
|
|
<p>Use this site to get your weather!</p>
|
2019-10-10 12:30:22 -06:00
|
|
|
|
|
|
|
|
<form>
|
|
|
|
|
<input placeholder="Location">
|
|
|
|
|
<button>Search</button>
|
|
|
|
|
</form>
|
2019-10-10 12:45:14 -06:00
|
|
|
|
|
|
|
|
<p id="message-1"></p>
|
|
|
|
|
<p id="message-2"></p>
|
2019-10-08 18:10:51 -06:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{{>footer}}
|
2019-10-10 12:30:22 -06:00
|
|
|
|
|
|
|
|
<script src="/js/app.js"></script>
|
2019-09-29 18:53:20 -06:00
|
|
|
</body>
|
2019-09-30 11:17:07 -06:00
|
|
|
|
2019-09-30 11:42:22 -06:00
|
|
|
</html>
|