-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharticles.html
More file actions
56 lines (54 loc) · 2.18 KB
/
Copy patharticles.html
File metadata and controls
56 lines (54 loc) · 2.18 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Articles - swjang702's Portfolio</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container">
<a class="navbar-brand" href="/index.html">swjang702</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link" href="/index.html#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/articles.html">Articles</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/index.html#projects">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/index.html#contact">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="container mt-5">
<div class="row">
<div class="col-lg-8 mx-auto">
<h1 class="display-4">All Articles</h1>
<hr class="my-4">
<div class="list-group">
<a href="/articles/exploring-ebpf.html" class="list-group-item list-group-item-action">
<div class="d-flex w-100 justify-content-between">
<h5 class="mb-1">Exploring eBPF</h5>
<small>July 3, 2025</small>
</div>
<p class="mb-1">A deep dive into the world of eBPF and its capabilities.</p>
</a>
<!-- Add more articles here as you write them -->
</div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>