-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
88 lines (88 loc) · 3.12 KB
/
blog.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
<!DOCTYPE html>
<html lang="en">
@@include('./components/Head.html', {
title: 'Название сайта'
})
<body>
<main class="main">
@@include('./components/Header.html')
<section class="section__blog">
<div class="blog__content">
@@include('./components/blogItem.html')
@@include('./components/blogItem.html')
@@include('./components/blogItem.html')
@@include('./components/blogItem.html')
@@include('./components/blogItem.html')
@@include('./components/blogItem.html')
@@include('./components/blogItem.html')
@@include('./components/blogItem.html')
</div>
<aside class="blog__aside">
<div class="blog__aside-categories">
@@include('./components/Button.html', {
text: 'salve',
type: 'orangeOutline'
})
@@include('./components/Button.html', {
text: 'wax',
type: 'orangeOutline'
})
@@include('./components/Button.html', {
text: 'tea',
type: 'orangeOutline'
})
@@include('./components/Button.html', {
text: 'propolis',
type: 'orangeOutline'
})
@@include('./components/Button.html', {
text: 'guidance',
type: 'orangeOutline'
})
@@include('./components/Button.html', {
text: 'stories',
type: 'orangeOutline'
})
@@include('./components/Button.html', {
text: 'tips',
type: 'orangeOutline'
})
@@include('./components/Button.html', {
text: 'products',
type: 'orangeOutline'
})
</div>
<div class="blog__aside-popular">
<span class="blog__aside-popular-title">Popular Posts</span>
<ul>
<li> <a href="#">Where did the Beeswax & Propolis Magic Salve Come From and Why is it so special?</a> </li>
<li> <a href="#">How do we make our healing salves?</a> </li>
<li> <a href="#">Properties of key ingredients in ourselves?</a> </li>
<li> <a href="#">How to use Beeswax & Propolis Magic Salve?</a> </li>
</ul>
</div>
<div class="blog__aside-instagram">
<h1>Instagram</h1>
<div class="imgs">
<img src="https://source.unsplash.com/random" />
<img src="https://source.unsplash.com/random" />
<img src="https://source.unsplash.com/random" />
<img src="https://source.unsplash.com/random" />
<img src="https://source.unsplash.com/random" />
<img src="https://source.unsplash.com/random" />
<img src="https://source.unsplash.com/random" />
<img src="https://source.unsplash.com/random" />
<img src="https://source.unsplash.com/random" />
</div>
@@include('./components/Button.html', {
text: 'Go to profile',
type: 'orange'
})
</div>
</aside>
</section>
<hr class="hr" />
@@include('./components/Footer.html')
</main>
</body>
</html>