-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnews.html
76 lines (63 loc) · 3.22 KB
/
news.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>OpenModHub - News</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-2H7MWQL7FF"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-2H7MWQL7FF');
</script>
<link rel="icon" href="favicon.png" type="image/x-icon">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container-fluid">
<a href="index.html" class="navbar-brand"><img src="images/logo_openmodhub.png" class="img-fluid" style="max-height: 30px;" alt="OpenModHub logo"></a>
<button type="button" class="navbar-toggler" data-bs-toggle="collapse" data-bs-target="#navbarCollapse">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<div class="navbar-nav fw-light">
<a href="news.html" class="nav-item nav-link text-uppercase text-uppercase bg-white bg-opacity-50 rounded-1 text-white">News</a>
<a href="docs.html" class="nav-item nav-link text-uppercase">Docs</a>
<a href="contact.html" class="nav-item nav-link text-uppercase">Contact</a>
</div>
<div class="navbar-nav ms-auto">
<a href="https://github.com/openmodhub/" class="nav-item nav-link"><img src="images/logo_github-mark-white.png" class="img-fluid" style="max-height: 30px;" alt="GitHub logo"></a>
</div>
</div>
</div>
</nav>
<div class="container mt-4">
<div class="blog-post my-5 border-bottom">
<p class="blog-post-title fs-3 lh-1">More mods added!</p>
<p class="blog-post-meta fs-6 fw-lighter lh-1">December 1, 2023 by <a class="" href="https://github.com/borondics">borondics</a></p>
<div class="blog-post-content card-text">
<p>We are now adding software and hardware mods to the site. Check them out!</p>
</div>
</div>
<div class="blog-post my-5 border-bottom">
<p class="blog-post-title fs-3 lh-1">Getting up to speed...</p>
<p class="blog-post-meta fs-6 fw-lighter lh-1">October 10, 2023 by <a class="" href="https://github.com/borondics">borondics</a></p>
<div class="blog-post-content card-text">
<p>Added two more mods.</p>
</div>
</div>
<div class="blog-post my-5">
<p class="blog-post-title fs-3 lh-1">OpenModHub is live!</p>
<p class="blog-post-meta fs-6 fw-lighter lh-1">October 5, 2023 by <a class="" href="https://github.com/borondics">borondics</a></p>
<div class="blog-post-content card-text">
<p>We launched the site with one project so far. More will come soon, we just need to get more organized and push content to GitHub.</p>
<p>Stay tuned!</p>
</div>
</div>
</div>
</body>
</html>