-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnews.html
More file actions
106 lines (101 loc) · 4.13 KB
/
Copy pathnews.html
File metadata and controls
106 lines (101 loc) · 4.13 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="LLMNetOps News & Progress - Latest updates, meeting reports, and project milestones.">
<title>News & Progress - LLMNetOps</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/responsive.css">
<link rel="stylesheet" href="css/components.css">
</head>
<body>
<!-- Navigation -->
<nav>
<div class="nav-container">
<a href="index.html" class="logo">
<img src="images/llmnetops-logo-formal.png" alt="LLMNetOps Logo">
</a>
<button class="mobile-menu-btn" aria-label="Toggle navigation menu">
<span></span>
<span></span>
<span></span>
</button>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="activities.html">Activities</a></li>
<li><a href="workshops.html">Workshops</a></li>
<li><a href="news.html" class="active">News</a></li>
<li><a href="resources.html">Resources</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</nav>
<!-- Page Header -->
<section class="page-header">
<div class="breadcrumb">
<a href="index.html">Home</a>
<span>/</span>
<span>News & Progress</span>
</div>
<h1>News & Progress</h1>
<p>Stay updated with our latest achievements, meetings, and project milestones</p>
</section>
<!-- News Section -->
<section class="about">
<div class="container">
<div id="news-container" class="news-grid">
<!-- News articles will be dynamically loaded here -->
</div>
</div>
</section>
<!-- Back to Top Button -->
<button id="back-to-top" class="back-to-top" aria-label="Back to top">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M18 15l-6-6-6 6"/>
</svg>
</button>
<!-- Footer -->
<footer>
<div class="footer-content">
<div class="footer-section">
<h3>About LLMNetOps</h3>
<p>Building foundational AI knowledge through locally-hosted open-source LLMs for network operations.</p>
</div>
<div class="footer-section">
<h3>Quick Links</h3>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="activities.html">Activities</a></li>
<li><a href="workshops.html">Workshops</a></li>
<li><a href="news.html">News</a></li>
<li><a href="resources.html">Resources</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Funded By</h3>
<div class="partner-logos">
<img src="images/APNIC-Foundation-and-ISIF-Logo-white-stacked-01.svg" alt="APNIC Foundation and ISIF Logo">
</div>
</div>
<div class="footer-section">
<h3>Implemented By</h3>
<div class="partner-logos">
<img src="images/Logo_Universitas_Brawijaya.png" alt="Universitas Brawijaya Logo">
<img src="images/logo-idren.png" alt="IDREN Logo">
</div>
</div>
</div>
<div class="footer-bottom">
<p>© <span class="current-year">2025</span> LLMNetOps. Funded by ISIF Asia 2025. All rights reserved.</p>
</div>
</footer>
<script src="js/navigation.js"></script>
<script src="js/animations.js"></script>
<script src="js/main.js"></script>
<script src="js/news.js"></script>
</body>
</html>