-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (52 loc) · 2.3 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Zeyd Taha Candan - Blog</title>
<meta name="description" content="Personal blog about everything I'm passionate about.">
<meta name="author" content="Zeyd Taha Candan">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
</head>
<body>
<div class="container d-flex justify-content-center py-4">
<!-- Navigation -->
<div class="col-md-3">
<nav class="mb-5">
<ul class="list-unstyled">
<li class="mb-3">
<a href="index.html" class="text-decoration-none text-dark">blog</a>
</li>
<li class="mb-3">
<a href="about.html" class="text-decoration-none text-dark">about</a>
</li>
<li class="mb-3">
<a href="otherpages.html" class="text-decoration-none text-dark">me on other pages</a>
</li>
<li class="mb-3">
<a href="mailto:[email protected]" class="text-decoration-none text-dark">email</a>
</li>
</ul>
</nav>
</div>
<!-- Articles -->
<div class="col-md-6">
<header class="mb-5">
<h3>Zeyd Taha Candan</h3>
<p class="text-muted">A restlessness journey.</p>
</header>
<article class="mb-5 pb-4 border-bottom">
<h4>
<a href="#" class="text-decoration-none text-primary">Placeholder</a>
</h4>
<div class="mb-2">
<span class="text-muted small me-3"><i class="bi bi-calendar"></i> Dez 01, 2024</span>
</div>
<p class="mb-0">This is a placeholder. It will be replaced with actual articles in the future.</p>
</article>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>