-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
111 lines (94 loc) · 4.32 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="assets/css/styles.css" />
<link rel="stylesheet" href="assets/fonts/all.min.css" />
<link rel="stylesheet" href="assets/css/blogs.css" />
<link rel="icon" href="./assets/images/favicon.ico" type="image" />
<title>Blog - Perspective Media</title>
<script src="assets/js/lib/require.js" defer></script>
<script src="assets/js/main.js" defer></script>
<script src="assets/js/modules/pages/blog.js" defer></script>
</head>
<body>
<div id="container" class="container">
<!-- start of header section -->
<header class="header site-header">
<a class="main-icon" href="index.html"><img src="assets/images/logo.png" class="nav logo"
alt="perspective media logo" /></a>
<nav class="nav top-nav">
<!-- site-nav injection point -->
</nav>
</header>
<!-- end of header section -->
<!-- start of main section -->
<main class="main-section">
<!-- start of hero section -->
<div class="hero hero-section">
<div class="overlay-text">
<p class="hero-text">
Its how you see it.
</p>
<button type="button" id="open-contact-modal-btn" class="contact">Contact</button>
</div>
<img src="./assets/images/perspective.jpg" alt="group of people" class="hero hero-img">
</div>
<!-- end of hero section -->
<!-- start of blog section -->
<div class="blog-section">
<!-- start of aside user info panel -->
<div class="left-side-panel">
<div class="submit-blog" style="display:none">
<button id="add-atricle-btn" class="add-article">Add
Article</button>
</div>
<div class="submit-comment" style="display:none">
<button id="add-comment-btn" class="add-comment">Add
Comment</button>
</div>
</div>
<!-- end of aside user info panel -->
<div id="post-section">
<div class="article-section blog-post">
<div class="blog-header-container">
<header class="blog-header">
<h2 class="title">Article Not Found</h2>
<h4 class="date"></h4>
</header>
</div>
<!-- start of article section -->
<img src="assets/images/404.svg" class="blogImg blog-image-err" />
<p class="article-content">
Article does not exist. <br> if you believe this is
an Error. <br>
<br>
<span>Contact Support: <a href="contact_us.html">Here</a></span>
</p>
</div>
<!-- user control section -->
<div id="user-panel-section"></div>
<!-- end of user control section -->
<!-- start of comment section -->
<div class="comment-section">
<article class="comments" data-done=false>
<div class="post-comment" id="id"></div>
</article>
</div>
<!-- end of comment section -->
</article>
</div>
<!-- end of article section -->
</div>
<!-- end of blog article section -->
</main>
<!-- end of main section -->
</div>
<!-- end of blog section -->
<!-- Start of Footer Injection Point -->
<div id="site-footer" class="footer-items"></div>
<!-- End of Footer Injection Point -->
</body>
</html>