-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
339 lines (276 loc) · 13.2 KB
/
index.html
File metadata and controls
339 lines (276 loc) · 13.2 KB
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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
<!DOCTYPE html>
<html lang="en">
<head>
<title>IT Blog</title>
<link rel="shortcut icon" type="image/x-icon" href="images/ico.ico">
<!--META-->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Kizlo Taras"/>
<meta name="description" content="My IT blozhyk. "/>
<meta name="keywords" content="blog, programming"/>
<!--LINKS-->
<!--ICONS-->
<link rel="stylesheet" href="lib/fontawesome/all.min.css"/>
<!--STYLES-->
<link rel="stylesheet" href="css/index.css"/>
</head>
<body>
<!--HEADER-->
<header>
<!--LOGO AND ICONS-->
<div class="container">
<!--logo-->
<img src="images/logo.png" alt="Logo"/>
<h1>IT Blog</h1>
<!--social icons-->
<div class="social">
<!--search-->
<input type="text" placeholder="Пошук..."/>
<i class="fas fa-search"></i>
<!--icons-->
<i class="fab fa-facebook-f"></i>
<i class="fab fa-linkedin-in"></i>
<i class="fab fa-telegram-plane"></i>
<i class="fab fa-google"></i>
</div>
</div>
<!--MENU-->
<div class="menu">
<!--open/close button-->
<!--should be at the same deepness level with nav-->
<input type="checkbox" class="open-close-btn" />
<span></span>
<span></span>
<span></span>
<!--navigation-->
<nav>
<!--overlay activates on small screen-->
<div class="overlay container">
<ul class="overlay-content">
<li>
<a href="#">Новини</a>
</li>
<li>
<a href="#">Статті</a>
</li>
<li>
<a href="#">Програмування</a>
</li>
<li>
<a href="#">Саморозвиток</a>
</li>
<li>
<a href="#">Про нас</a>
</li>
</ul>
</div>
</nav>
</div>
</header>
<!--CONTENT-->
<div class="container">
<!--MAIN-->
<main class="block">
<h2>Список статей</h2>
<!--CARDS-->
<div class="cards">
<div class="card">
<!--preview image-->
<img src="images/cards/c1.png" alt="Card preview image">
<!--content-->
<div class="content">
<h4>Помилки на Python</h4>
<time>2018-07-19</time>
<p>Топ поширених помилок серед Python програмістів і як їх позбутись ...</p>
</div>
<hr/>
<!--footer-->
<div class="footer social">
<i class="fas fa-heart" title="Amount of likes"><span>19</span></i>
<i class="fas fa-eye" title="Amount of views"><span>23</span></i>
<i class="fas fa-comments" title="Amount of comments"><span>4</span></i>
</div>
</div>
<div class="card">
<!--preview image-->
<img src="images/cards/c2.png" alt="Card preview image">
<!--content-->
<div class="content">
<h4>Git за 30 хвилин</h4>
<time>2018-07-20</time>
<p>Гайд по освоєнню системи контролю версіями Git, яку використовують у багатьох Open Source проектах ...</p>
</div>
<hr/>
<!--footer-->
<div class="footer social">
<i class="fas fa-heart" title="Amount of likes"><span>19</span></i>
<i class="fas fa-eye" title="Amount of views"><span>23</span></i>
<i class="fas fa-comments" title="Amount of comments"><span>4</span></i>
</div>
</div>
<div class="card">
<!--preview image-->
<img src="images/cards/c3.png" alt="Card preview image">
<!--content-->
<div class="content">
<h4>Способи покращення обробників подій</h4>
<time>2018-07-20</time>
<p>З‘ясуємо, як звести до мінімуму кількість необхідних обробників подій ...</p>
</div>
<hr/>
<!--footer-->
<div class="footer social">
<i class="fas fa-heart" title="Amount of likes"><span>19</span></i>
<i class="fas fa-eye" title="Amount of views"><span>23</span></i>
<i class="fas fa-comments" title="Amount of comments"><span>4</span></i>
</div>
</div>
<div class="card">
<!--preview image-->
<img src="images/cards/c4.png" alt="Card preview image">
<!--content-->
<div class="content">
<h4>Основи Vue.js</h4>
<time>2018-07-20</time>
<p>Розглянемо основи роботи із Vue.js ...</p>
</div>
<hr/>
<!--footer-->
<div class="footer social">
<i class="fas fa-heart" title="Amount of likes"><span>19</span></i>
<i class="fas fa-eye" title="Amount of views"><span>23</span></i>
<i class="fas fa-comments" title="Amount of comments"><span>4</span></i>
</div>
</div>
<div class="card">
<!--preview image-->
<img src="images/cards/c5.png" alt="Card preview image">
<!--content-->
<div class="content">
<h4>Модульні компоненти в React</h4>
<time>2018-07-21</time>
<p>Розглянемо створення модульних компонентів в React ...</p>
</div>
<hr/>
<!--footer-->
<div class="footer social">
<i class="fas fa-heart" title="Amount of likes"><span>19</span></i>
<i class="fas fa-eye" title="Amount of views"><span>23</span></i>
<i class="fas fa-comments" title="Amount of comments"><span>4</span></i>
</div>
</div>
<div class="card">
<!--preview image-->
<img src="images/cards/c6.png" alt="Card preview image">
<!--content-->
<div class="content">
<h4>Що таке RESTful API?</h4>
<time>2018-07-21</time>
<p>RESTful API та його особливості ...</p>
</div>
<hr/>
<!--footer-->
<div class="footer social">
<i class="fas fa-heart" title="Amount of likes"><span>19</span></i>
<i class="fas fa-eye" title="Amount of views"><span>23</span></i>
<i class="fas fa-comments" title="Amount of comments"><span>4</span></i>
</div>
</div>
<div class="card">
<!--preview image-->
<img src="images/cards/c7.png" alt="Card preview image">
<!--content-->
<div class="content">
<h4>JS та AI</h4>
<time>2018-07-22</time>
<p>Обговоримо актуальність JS при розробці NN ...</p>
</div>
<hr/>
<!--footer-->
<div class="footer social">
<i class="fas fa-heart" title="Amount of likes"><span>19</span></i>
<i class="fas fa-eye" title="Amount of views"><span>23</span></i>
<i class="fas fa-comments" title="Amount of comments"><span>4</span></i>
</div>
</div>
</div>
</main>
<!--ASIDE-->
<aside>
<!--author block-->
<div class="block author">
<h2>Автор</h2>
<img src="images/author.jpg" alt="Author">
<h3>Kizlo Taras</h3>
<p>Let just imagine there's no heaven, it's easy if you try...</p>
</div>
<!--block with social icons-->
<div class="block social">
<i class="fab fa-facebook-f"></i>
<i class="fab fa-linkedin-in"></i>
<i class="fab fa-telegram-plane"></i>
<i class="fab fa-google"></i>
</div>
<!--subscribe block-->
<div class="block subscribe">
<h2>Підписатись</h2>
<input type="text" placeholder="Нікнейм..."/>
<input type="email" placeholder="Електронна пошта..."/>
<input type="button" value="subscribe"/>
</div>
<!--search block-->
<div class="block search">
<input type="text" placeholder="Пошук..."/>
<button type="button">
<i class="fa fa-search"></i>
</button>
</div>
<!--tags block-->
<div class="block tags">
<h2>Популярні теги</h2>
<div>
<span class="tag">programming</span>
<span class="tag">information_technology</span>
<span class="tag">html</span>
<span class="tag">css</span>
<span class="tag">js</span>
<span class="tag">computer_science</span>
</div>
</div>
<!--comments block-->
<div class="block comments">
<h2>Останні коментарі</h2>
<!--comments-->
<div class="comment">
<img src="images/comments/Edward.png" alt="Avatar">
<p class="info">
<span class="author">Edward</span>
<time datetime="2019-07-19">yesterday</time>
</p>
<p class="text" title="I like it">I like it</p>
</div>
<div class="comment">
<img src="images/comments/Jeremy.png" alt="Avatar">
<p class="info">
<span class="author">Jeremy</span>
<time datetime="2019-07-15">5 days ago</time>
</p>
<p class="text" title="Lorem ipsum dolor sit amet - is not allowed">Lorem ipsum dolor sit amet - is not allowed</p>
</div>
</div>
</aside>
</div>
<!--FOOTER-->
<footer>
<div>
<img src="images/logo.png" alt="Logo">
</div>
<p>
Контактні дані:
<a href="mailto:iamprovidence@mail.сom">iamprovidence@mail.сom</a>
</p>
<p>Copyright ©</p>
</footer>
</body>
</html>