-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
82 lines (77 loc) · 3.22 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Keyword Arguments</title>
<link rel="stylesheet" href="blog.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>✍</text></svg>">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wdth,[email protected],700&display=swap" rel="stylesheet">
</head>
<body>
<header>
<h1 id="kwargs-link" data-value="kwargs.click">kwargs.click</h1>
<a href="https://docs.python.org/3/glossary.html#term-parameter">
<h3 id="subtitle">Keyword Arguments</h3>
</a>
<nav>
<ul>
<ul class="tags-menu">
<li class="tag" data-tag="Chess" data-active="no"><a href="#">♞ Chess</a></li>
<li class="tag" data-tag="Coding" data-active="no"><a href="#">⌨️ Coding</a></li>
<li class="tag" data-tag="Data" data-active="no"><a href="#">📊 Data</a></li>
<li class="tag" data-tag="Article" data-active="no"><a href="#">📰 Article</a></li>
<li class="tag" data-tag="Book" data-active="no"><a href="#">📚 Book</a></li>
<!-- Add more tag categories as needed -->
</ul>
</ul>
</nav>
</header>
<main>
<section class="featured">
<h2>Featured Post</h2>
<article>
<h3 class="post-title"><a href="/posts/blogpost0.html">Post Title</a></h3> <!-- Changed -->
<p class="publication-date">April 14, 2024</p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam suscipit felis eu nisl faucibus, ac feugiat velit aliquam.</p>
</article>
</section>
<section class="recent-posts">
<h2>Recent Posts</h2>
<ul>
<li class="post">
<h3 class="post-title"><a href="#">Post 1 Title</a></h3> <!-- Changed -->
<p class="publication-date">April 13, 2024</p>
</li>
<li class="post" data-tags="Data">
<h3 class="post-title"><a href="#">Post 2 Title</a></h3> <!-- Changed -->
<p class="publication-date">April 12, 2024</p>
<ul class="tags">
<li class="tag" data-tag="Data">📊</li>
<li class="tag">Tag 2</li>
<li class="tag">Tag 3</li>
</ul>
</li>
<li class="post">
<h3 class="post-title"><a href="#">Post 3 Title</a></h3> <!-- Changed -->
<p class="publication-date">April 11, 2024</p>
<ul class="tags">
<li class="tag" data-tag="Data">📊</li>
</ul>
</li>
</ul>
</section>
</main>
<footer>
<nav>
<ul>
<li><a href="https://github.com/yourusername"><img src="assets\images\gh_logo.png" alt="GitHub Logo"></a></li>
<li><a href="https://www.linkedin.com/in/yourusername"><img src="assets\images\linkedin_logo.png" alt="LinkedIn Logo"></a></li>
</ul>
</nav>
</footer>
</body>
<script src="blog.js"></script>
</html>