-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotes.html
129 lines (100 loc) · 2.64 KB
/
notes.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
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0">
<!--CHANGE THIS FOR EVERY PAGE FOR SEO-->
<meta name="description" content="ever-evolving data, definitions, stances and opinions.">
<meta name="author" content="Arjun">
<meta name="keywords" content="Arjun, designer, design researcher, computational artist, Indian artist, notes">
<!--SEO END-->
<link rel="icon" type="image/x-icon" href="/assets/favicon.ico">
<link rel="stylesheet" href="style.css">
<!--FOOTER-->
<script>
// fetch footer.
fetch("/assets/repeated-elements/footer.html")
.then((response) => {
if (!response.ok) {
throw new Error("Failed to load footer: " + response.statusText);
}
return response.text();
})
.then((html) => {
document.getElementById("footer").innerHTML = html;
})
.catch((error) => {
console.error(error);
document.getElementById("footer").innerHTML = "<h1>Error loading footer</h1>";
});
</script>
<title>arjun's archive / notes</title>
</head>
<body>
<div class="in-margin-container">
<nav class = "header">
<a href="index.html">arjun's archive</a>
<div class = "right-items">
<a href="notes.html" class = "active">notes</a>
<a href="information.html">information</a>
</div>
</nav>
<div class = "lander">
<p>(yet another) 'blog', but i haven't figured out <em>exactly</em> what this is yet.</p>
</div>
<hr>
<!--ALL NOTES BEGIN -->
<div class="all-notes-container">
<!--INDIVIDUAL NOTES CONTAINER BEGINS-->
<div class="notes-item-container">
<a href = "/notes/living-with-artistic-mediocrity.html">
<div class="notes-titler">
<div class="left">
<h1>living with artistic mediocrity</h1>
<p id="last-updated">09th January, 2024</p>
</div>
<div class="right">
<p>→</p>
</div>
</div>
</a>
</div>
<!--INDIVIDUAL NOTES CONTAINER ENDS-->
<hr>
<!--INDIVIDUAL NOTES CONTAINER BEGINS-->
<div class="notes-item-container">
<a href = "/notes/my-body-is-wrapped-inside-a-permeable-membrane.html">
<div class="notes-titler">
<div class="left">
<h1>my body is wrapped inside a permeable membrane</h1>
<p id="last-updated">06th January, 2024</p>
</div>
<div class="right">
<p>→</p>
</div>
</div>
</a>
</div>
<!--INDIVIDUAL NOTES CONTAINER ENDS-->
<hr>
<!--INDIVIDUAL NOTES CONTAINER BEGINS-->
<div class="notes-item-container">
<a href = "/notes/why-i-want-to-blog-again.html">
<div class="notes-titler">
<div class="left">
<h1>why i want to blog (again)</h1>
<p id="last-updated">31st December, 2024</p>
</div>
<div class="right">
<p>→</p>
</div>
</div>
</a>
</div>
<!--INDIVIDUAL NOTES CONTAINER ENDS-->
<!--ALL NOTES END -->
</div>
<div id = "footer"></div>
</div>
</body>
</html>