-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathblog.html
More file actions
106 lines (103 loc) · 3.53 KB
/
blog.html
File metadata and controls
106 lines (103 loc) · 3.53 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" />
<title>posts</title>
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<link rel="stylesheet" href="styles.css" />
<script type="text/javascript" src="darkmode.js" defer></script>
<script src="https://unpkg.com/force-graph"></script>
<script type="text/javascript" src="graph.js" defer></script>
</head>
<body>
<div id="page">
<div id="sidebar">
<h2>navigation</h2>
<ul>
<li><a href="index.html">home</a></li>
<li><a href="about.html">about</a></li>
<li><a href="blog.html">posts</a></li>
<li><a href="photo.html">photos</a></li>
<li id="theme-toggle">light</li>
</ul>
<h2>posts</h2>
<p>
this is where i post all my thoughts that i feel like sharing, my
notes stay here aswell.
</p>
<h2>hosted by</h2>
<p>anurag <br><a href="mailto:asethcore@gmail.com">asesthcore[at]gmail[dot]com</a></p>
<div id="graph">
<h2>graph view</h2>
<div id="graph-wrapper">
<div id="graph-container"></div>
<button id="graph-expand-btn" aria-label="Expand Graph">
<svg
width="14"
height="14"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2.5"
stroke-linecap="round"
stroke-linejoin="round"
>
<polyline points="15 3 21 3 21 9"></polyline>
<polyline points="9 21 3 21 3 15"></polyline>
<line x1="21" y1="3" x2="14" y2="10"></line>
<line x1="3" y1="21" x2="10" y2="14"></line>
</svg>
</button>
</div>
</div>
</div>
<div id="content">
<h1>posts</h1>
<p><strong>last modified on jan 26, 2026</strong></p>
<div class="blog-list">
<ul>
<li>
<span class="blog-title"><a href="blogs/wall.html">wall of shame</a></span>
<span class="blog-date">jan 26, 2026</span>
</li>
<li>
<span class="blog-title"><a href="blogs/blog6.html">smth smth</a></span>
<span class="blog-date">jan 14, 2026</span>
</li>
<li>
<span class="blog-title"
><a href="blogs/blog5.html">bigmouth</a></span
>
<span class="blog-date">oct 18, 2025</span>
</li>
<li>
<span class="blog-title"
><a href="blogs/blog4.html">samsara</a></span
>
<span class="blog-date">mar 27, 2025</span>
</li>
<li>
<span class="blog-title"
><a href="blogs/blog3.html">reality shift</a></span
>
<span class="blog-date">feb 26, 2025</span>
</li>
<li>
<span class="blog-title"
><a href="blogs/blog2.html">chaos cascade</a></span
>
<span class="blog-date">jan 29, 2025</span>
</li>
<li>
<span class="blog-title"
><a href="blogs/blog1.html">halo</a></span
>
<span class="blog-date">jan 03, 2025</span>
</li>
</ul>
</div>
</div>
</div>
</body>
</html>