-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
115 lines (109 loc) · 4 KB
/
index.html
File metadata and controls
115 lines (109 loc) · 4 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
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>home</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>vaeseth</h2>
<p>
an object or anything(one) which moves through uncertainty and stands
apart by choice
</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">
<img src="blogs/images/l/head.png" alt="head" class="post-image" />
<h1>hello peeps</h1>
<p><strong>last modified on jan 26, 2026</strong></p>
<p>
i'm seth. i am here to share my unorganised thoughts through this
little space that i have got on the internet. all my thoughts or
swings that i go through are stored in the
<a style="color: #0099cc; text-decoration: none" href="blog.html"
>posts</a
>
section. the notes that i make (or will make) are also going to be
uploaded in the posts section aswell.
</p>
<p>
you can learn more about me on on the
<a style="color: #0099cc; text-decoration: none" href="about.html"
>about</a
>
page and the
<a style="color: #0099cc; text-decoration: none" href="photo.html"
>photos</a
>
page has the photos that are on my device that are shot by me or my
dear friend mel.
</p>
<h3>recent posts</h3>
<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>
</ul>
</div>
</div>
</div>
</body>
</html>