-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpost-page.html
More file actions
90 lines (72 loc) · 2.74 KB
/
post-page.html
File metadata and controls
90 lines (72 loc) · 2.74 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
<!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">
<title>Eva Blog</title>
<!-- Link To Css-->
<link rel="stylesheet" href="css/style.css">
<!--Box Icons-->
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<!--Favicon -->
<link rel="shortcut icon" href="img/favicon.ico" type="image/x-icon">
</head>
<body>
<!--Header-->
<header>
<!--Nav-->
<div class="nav container">
<!--Logo-->
<a href="#" class="logo"><span>Eva</span> Blog</a>
<!--Back to Home-->
<a href="index.html" class="back-home">Home</a>
</div>
</header>
<!--Home-->
<!--Blog Content-->
<section class="blog-header">
<div class="header-content blog-container">
<!--Title-->
<h1 class="header-title" id="headertitle"></h1>
<!--Post Image-->
<img src="img/Grey.webp" id="post-image" alt="Post Image" class="header-img">
</div>
</section>
<!--Blogs-->
<section class="blog-content blog-container">
<h2 class="sub-heading" id="sub-heading"></h2>
<p class="blog-text" id="blog-text"></p>
</section>
<!--Share Blog-->
<!--Footer -->
<div class="footer container">
<p>© Eva Blog</p>
<div class="social">
<a href="https://twitter.com/web3_eva"><i class='bx bxl-twitter'></i></a>
<a href="https://discord.com/invite/4w8299MVTW"><i class='bx bxl-discord-alt' ></i></a>
</div>
</div>
<!-- Jquery Cdn-->
<script src="https://code.jquery.com/jquery-3.6.1.min.js" integrity="sha256-o88AwQnZB+VDvE9tvIXrMQaPlFFSUTR+nldQm1LuPXQ=" crossorigin="anonymous"></script>
<!--Link to Js-->
<script src="https://www.gstatic.com/firebasejs/7.14.2/firebase.js"></script>
<script type="module">
import API_KEY from "./js/apikey.js"
const firebaseConfig = {
apiKey: API_KEY,
authDomain: "eva-blog-32696.firebaseapp.com",
databaseURL : "https://eva-blog-32696-default-rtdb.firebaseio.com" ,
projectId: "eva-blog-32696",
storageBucket: "eva-blog-32696.appspot.com",
messagingSenderId: "182049745777",
appId: "1:182049745777:web:342960510f940aa85e24d0",
measurementId: "G-L6MQ77HH71"
};
// Initialize Firebase
const app = firebase.initializeApp(firebaseConfig);
</script>
<script src="js/main.js"></script>
<script src="js/postpage.js"></script>
</body>
</html>