-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.html
More file actions
94 lines (82 loc) · 4.58 KB
/
blog.html
File metadata and controls
94 lines (82 loc) · 4.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blog / Thoughts - Roberto Boghetti</title>
<meta name="description" content="Occasional writings on research, graphs, sustainability, and technology by Roberto Boghetti.">
<!-- OG Meta Tags -->
<meta property="og:title" content="Blog | Roberto Boghetti">
<meta property="og:description" content="Occasional writings on research, graphs, sustainability, and technology by Roberto Boghetti.">
<meta property="og:type" content="website">
<!-- <meta property="og:url" content="WEBSITE_URL_HERE"> --> <!-- TODO: Replace with actual URL when online -->
<!-- <meta property="og:image" content="IMAGE_URL_HERE"> --> <!-- TODO: Add a preview image URL if you have time -->
<meta name="twitter:card" content="summary">
<!-- Preload Fonts -->
<!-- <link rel="preload" href="static/fonts/poppins-v22-latin-regular.woff2" as="font" type="font/woff2" crossorigin="anonymous"> -->
<!-- <link rel="preload" href="static/fonts/poppins-v22-latin-300.woff2" as="font" type="font/woff2" crossorigin="anonymous"> -->
<!-- <link rel="preload" href="static/fonts/outfit-v11-latin-regular.woff2" as="font" type="font/woff2" crossorigin="anonymous"> -->
<!-- <link rel="preload" href="static/fonts/outfit-v11-latin-600.woff2" as="font" type="font/woff2" crossorigin="anonymous"> -->
<!-- Link to Stylesheet -->
<link rel="stylesheet" href="css/style.css">
<!-- Favicons (see https://stackoverflow.com/q/48956465/)-->
<link rel="icon" type="image/png" href="static/icons/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/svg+xml" href="static/icons/favicon.svg" />
<link rel="shortcut icon" href="static/icons/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="static/icons/apple-touch-icon.png" />
<link rel="manifest" href="static/icons/site.webmanifest" />
<!-- For Fallback in Case webmanifest fails to load -->
<meta name="msapplication-TileColor" content="#2c2c2c">
<meta name="theme-color" content="#2c2c2c">
</head>
<body>
<nav>
<div class="container nav-container">
<button class="nav-dropdown-toggle" aria-label="Toggle navigation" aria-expanded="false">
<span class="nav-arrow"></span>
</button>
<div class="nav-links">
<ul>
<li><a href="index.html">About</a></li>
<li><a href="blog.html" class="active">Thoughts</a></li>
<li><a href="publications.html">Publications</a></li>
<li><a href="talks.html">Talks</a></li>
<li><a href="vitae.html">Vitae</a></li>
</ul>
</div>
</div>
</nav>
<main>
<div class="container">
<h1>Blog / Thoughts</h1>
<p>Occasional writings on research, graphs, sustainability, and technology.</p>
<!-- Tag Filter Buttons -->
<div class="tag-filter-container">
<button class="tag-filter-button active" data-filter-tag="all">All Posts</button>
<button class="tag-filter-button" data-filter-tag="pydhn">PyDHN</button>
</div>
<!-- Blog Posts List -->
<div class="blog-posts-list">
<article class="post-preview" data-tags="pydhn">
<h2><a href="posts\20241030_pydhn_release_v_0_1_3.html">PyDHN Release v0.1.3: Docs, Finally!</a></h2>
<p class="post-meta">Published on October 30, 2024</p>
<div class="post-tags"><span class="tag-badge" data-tag="pydhn">PyDHN</span></div>
<div class="post-excerpt">
<p class="">Hey everyone! PyDHN gets a much needed update with v0.1.3. It's a minor update, but it contains some nice improvements...</p>
</div>
<p><a href="posts\20241030_pydhn_release_v_0_1_3.html">Read more →</a></p>
</article>
</div> <!-- end blog-posts-list -->
</div> <!-- end container -->
</main>
<footer>
<div class="container">
© <span id="current-year"></span> Roberto Boghetti | Powered by coffee ☕.
</div>
</footer>
<!-- Scripts -->
<script src="js/footer.js"></script> <!-- Footer Year -->
<script src="js/blog-filter.js"></script> <!-- Filtering Logic -->
<script src="js/nav-dropdown.js" defer></script> <!-- Dropdown Navigation Toggle -->
</body>
</html>