-
Notifications
You must be signed in to change notification settings - Fork 4
/
blog1.html
49 lines (47 loc) · 1.72 KB
/
blog1.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
<!--
Blog page to view published blog: Blog 1
CSCI-2356 Project: Phase 3
author: Nayem Imtiaz (A00448982)
author: Naziya Tasnim (A00447506)
author: Sheikh Saad Abdullah (A00447871)
-->
<!DOCTYPE html>
<html lang="en" class="h-100">
<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" />
<meta name="description" content="Blog 1 description" />
<title>Blog 1</title>
<!-- Custom CSS -->
<link rel="stylesheet" href="assets/css/viewer.css" />
<!-- JQuery JS -->
<script
src="https://code.jquery.com/jquery-3.6.0.min.js"
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4="
crossorigin="anonymous"
></script>
<!-- Custom JS -->
<script src="assets/js/viewer.js"></script>
<!-- Alpine.js -->
<script
defer
src="https://unpkg.com/alpinejs@3.x.x/dist/cdn.min.js"
></script>
</head>
<body x-data="staticData" x-init="load(1)" class="d-flex flex-column h-100">
<main class="d-flex flex-column align-items-center">
<header class="w-100 p-2 border-bottom border-primary">
<h1 class="text-center">Blog 1</h1>
</header>
<article
class="bg-white w-75 p-3 rounded-bottom shadow text-center"
x-html="content"
></article>
</main>
<footer class="footer mt-auto bg-dark text-white text-center p-3">
<p><strong>Michael's Blog</strong></p>
<p>Copyright, 2022</p>
</footer>
</body>
</html>