-
Notifications
You must be signed in to change notification settings - Fork 0
/
postList.html
84 lines (62 loc) · 2.03 KB
/
postList.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link href="./css/main.css" rel="stylesheet">
<title>Title</title>
</head>
<body>
<div class="container">
<header>
<div class="row">
<div class="header__blog" id="top">
<div class="header__blog__logo">
BlogWorld
</div>
<div class="header__blog__navigation">
<a href="index.html#home">Home</a>
<a href="index.html#portfolio">Portfolio</a>
<a href="blog.html">Blog</a>
<a href="post.html">Pages</a>
<a href="index.html#about">About</a>
<a href="index.html#contact">Contact</a>
<a id="blog" href="postList.html">Post List</a>
</div>
</div>
</div>
<div class="row">
<div class="add-post">
<a href="form.html" class="trends-button new-post-btn">Add New Post</a>
</div>
</div>
</header>
<br>
<div class="row">
<div class="authors-list-top">
</div>
<div class="posts-list-top">
</div>
<div class="post">
</div>
<div class="authors-list-aside">
</div>
</div>
<footer>
<div class="row">
<div class="footer-box">
<div class="footer-box__icons">
<img class="icon" src="icons_first_page/a-icon-facebook.svg">
<img class="icon" src="icons_first_page/a-icon-instagram.svg">
<img class="icon" src="icons_first_page/a-icon-dribbble.svg">
</div>
<div class="logo">BlogWorld</div>
<div class="footer-box__c">
©2019 All Rights Reserved.
</div>
</div>
</div>
</footer>
</div>
</body>
<script type='module' src="./js/PostList/main.js"></script>
</html>