This repository was archived by the owner on Feb 3, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (33 loc) · 1.88 KB
/
index.html
File metadata and controls
39 lines (33 loc) · 1.88 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
<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">
<meta name="author" content="KG-Development">
<meta name="description" content="A simple Demo of the functionality of the KG-Development ArticleBuilder v1.0">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link rel="stylesheet" href="../createArticle/css/articleBuilder.css">
<link rel="stylesheet" href="../createArticle/css/article.css">
<link rel="stylesheet" href="../createArticle/css/sidenav.css">
<link rel="stylesheet" href="./news.css">
<!-- <script src="../js/minimize.js" defer></script> -->
<script src="https://kit.fontawesome.com/6fedced9fe.js" crossorigin="anonymous"></script>
<title>Article Builder</title>
</head>
<body>
<header class="text-center mt-3">
<h1>News</h1>
<div class="row">
<div class="col"></div>
<div class="col"><hr style="color: rgb(33, 218, 171);"></div>
<div class="col"></div>
</div>
</header>
<div class="articles bg-light border rounded container p-5" id="articleRender">
<a id="addBtn" class="addBtn">Edit</a>
</div>
<script src="./news.js" type="module"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.10.2/dist/umd/popper.min.js" integrity="sha384-7+zCNj/IqJ95wo16oMtfsKbZ9ccEh31eOz1HGyDuCQ6wgnyJNSYdrPa03rtR1zdB" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.min.js" integrity="sha384-QJHtvGhmr9XOIpI6YVutG+2QOK9T+ZnN4kzFN1RtK3zEFEIsxhlmWl5/YESvpZ13" crossorigin="anonymous"></script>
</body>
</html>