-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
163 lines (144 loc) · 5.74 KB
/
index.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Weather App | Apps | George Moustakas - Web Developer / Software Engineer</title>
<link href="https://use.fontawesome.com/releases/v5.0.6/css/all.css" rel="stylesheet">
<link rel="stylesheet" href="assets/css/bulma.css" />
<link rel="stylesheet" href="assets/css/style.css" />
</head>
<body>
<!-- Search Form -->
<section class="hero has-text-centered is-custom-hero-header">
<div class="hero-body">
<div class="columns">
<div class="column"></div>
<div class="column">
<div class="field is-custom-hero-content">
<p class="control has-icons-right">
<input class="input is-custom-form-input-text search" type="text" placeholder="City Name. e.g Athens, GR">
<span class="icon is-small is-custom-color-icon-check is-right">
<i class="fas fa-check"></i>
</span>
<span class="icon is-small is-custom-color-icon-ban is-right">
<i class="fas fa-ban"></i>
</span>
</p>
</div>
</div>
<div class="column"></div>
</div>
</div>
</section>
<!-- Content Display -->
<div class="container">
<div class="columns">
<!-- Default Weather Cities -->
<div class="column">
<!-- TODO: Build Default Weather Locations -->
</div>
<!-- Users Location Weather Data -->
<div class="column">
<div class="tile is-custom-tile is-vertical">
<article class="tile is-child notification">
<p class="location_info ">
<ul class="has-text-centered">
<li class="location_name">City: <strong><span id="location_name"></span></strong></li>
<li class="location_temp">Temprature: <strong><span id="location_temp"></span> °C</strong></li>
<li class="location_temp_max">Max Temprature: <strong><span id="location_temp_max"></span> °C</strong></li>
<li class="location_temp_min">Min Temprature: <strong><span id="location_temp_min"></span> °C</strong></li>
</ul>
</p>
</article>
</div>
</div>
<!-- Default Weather Cities -->
<div class="column">
<!-- TODO: Build Default Weather Locations -->
<div class="notification is-custom-notification">
<button class="delete"></button>
<p>Your Location was found!</p>
</div>
</div>
</div>
</div>
<!-- Footer -->
<span class="footer_push"></span>
<footer class="footer is-custom-footer">
<div class="">
<div class="content">
<div class="columns">
<div class="column"></div>
<div class="column"></div>
<div class="column">
<div class="field is-grouped">
<!-- Facebook -->
<p class="control">
<a class="button is-custom-button-social" href="https://www.facebook.com/george.moustakas.3">
<span class="icon">
<i class="fab fa-facebook-f "></i>
</span>
</a>
</p>
<!-- Twitter -->
<p class="control">
<a class="button is-custom-button-social" href="https://twitter.com/george_mou">
<span class="icon">
<i class="fab fa-twitter"></i>
</span>
</a>
</p>
<!-- Instagram -->
<p class="control">
<a class="button is-custom-button-social" href="https://www.instagram.com/george_moustakas/">
<span class="icon">
<i class="fab fa-instagram"></i>
</span>
</a>
</p>
<!-- GitHub -->
<p class="control">
<a class="button is-custom-button-social" href="https://github.com/gemgr">
<span class="icon">
<i class="fab fa-github"></i>
</span>
</a>
</p>
<!-- LinkedIn -->
<p class="control">
<a class="button is-custom-button-social" href="https://www.linkedin.com/in/georgemou/">
<span class="icon">
<i class="fab fa-linkedin-in"></i>
</span>
</a>
</p>
<!-- Mail -->
<p class="control">
<a class="button is-custom-button-social" href="mailto:georgemou31@hotmail.com">
<span class="icon">
<i class="fas fa-envelope"></i>
</span>
</a>
</p>
</div>
</div>
<div class="column"></div>
<div class="column"></div>
</div>
<!-- Copyright -->
<p class="has-text-centered">
Made with <span class="icon is-custom-icon-heart"><i class="fas fa-heart"></i></span> & <span class="icon is-custom-icon-coffe"><i class="fas fa-coffee "></i></span> in Greece <br> By <a href="https://gemgr.github.io/" class="is-custom-footer-link">George Moustakas</a> © <span id="copyright"></span>
</p>
</div>
</div>
</footer>
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/main.js"></script>
<script type="text/javascript">
// Get the copyright year automatically. Cause automation is life!!
document.getElementById("copyright").innerHTML = new Date().getFullYear();
</script>
</body>
</html>