-
Notifications
You must be signed in to change notification settings - Fork 0
/
weather.html
45 lines (41 loc) · 1.08 KB
/
weather.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
<head>
<title>weather</title>
<link href='https://fonts.googleapis.com/css?family=Roboto:700|Pacifico' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-lg-10 col-lg-offset-2">
<h1 id="header_Text">Get the weather!</h1>
</div>
<div class="col-lg-4 col-lg-offset-2">
{{> searchForm}}
</div>
<div class="col-lg-4">
<div class="layout">
{{> layout}}
</div>
<div class="gifs">
{{> gifs}}
</div>
</div>
<div class="col-lg-6">
<!-- {{> citySelector}}
{{> recentCities}} -->
</div>
</div>
<div class="row">
<div class="logos col-lg-10 col-lg-offset-2">
<h2> Powered by</h2>
</div>
<div class="logoimg">
<div class="col-lg-4 col-lg-offset-2">
<a href="http://www.wunderground.com/"><img src=wundergroundLogo_4c.jpg></a>
</div>
<div class="col-lg-4 text-center">
<a href="http://giphy.com/"><img src=giphy_logo_buildtext_white_forever.gif></a>
</div>
</div>
</div>
</div>
</body>