-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.html
More file actions
37 lines (31 loc) · 1.09 KB
/
blog.html
File metadata and controls
37 lines (31 loc) · 1.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blog - Key's World</title>
<link rel="icon" href="assets/k.png">
<link rel="stylesheet" href="styles.css">
<script type="importmap">
{
"imports": {
"firebase/app": "https://www.gstatic.com/firebasejs/10.7.1/firebase-app.js",
"firebase/database": "https://www.gstatic.com/firebasejs/10.7.1/firebase-database.js",
"firebase/storage": "https://www.gstatic.com/firebasejs/10.7.1/firebase-storage.js"
}
}
</script>
</head>
<body>
<div class="inner-container">
<a href="index.html" style="display: block; margin-bottom: 20px;">< BACK TO HOME</a>
<div class="box">
<div class="box-title">✎ BLOG POSTS</div>
<div id="blog-list">
<div style="padding: 20px; text-align: center;">Loading posts from cloud...</div>
</div>
</div>
</div>
<script type="module" src="script.js"></script>
</body>
</html>