-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcortex.html
113 lines (106 loc) · 4.27 KB
/
cortex.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
<!DOCTYPE html>
<html lang="eng">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cerebral Cortex</title>
<style>
@font-face {
font-family: 'Stuart';
src: url('path/to/stuart.woff2') format('woff2'),
url('path/to/stuart.woff') format('woff');
font-weight: normal;
font-style: normal;
}
body {
font-family: 'Stuart', Arial, sans-serif;
margin: 0;
padding: 0;
background-image: url('renmeibackgrounds/homunc.jpg'); /* Add your image path */
background-size: cover; /* Cover the entire viewport */
background-position: center; /* Center the image */
background-attachment: fixed; /* Keeps the background fixed while scrolling */
}
header {
background-color: #333;
color: white;
padding: 15px;
text-align: center;
}
.container {
width: 80%;
margin: 20px auto;
}
.post {
background-color: #c2ddb6;
padding: 20px;
margin-bottom: 20px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.post h2 {
color: #333;
}
.post .meta {
color: #777;
font-size: 0.9em;
}
.post p {
line-height: 1.6;
}
footer {
background-color: #333;
color: white;
text-align: center;
padding: 15px;
margin-top: 20px;
}
</style>
</head>
<body>
<header>
<h1>The Cerebral Cortex</h1>
<p>The various neuronal encodings generated in my brain</p>
</header>
<div class="container">
<!-- First Blog Post -->
<div class="post">
<h2>You and I Are One In The Fire, In Love With The Universe</h2>
<h4>*PINNED*</h4>
<div class="meta">Neuron encoded at 18:36 on Oct 15, 2024 by Farmer</div>
<p>
<div></div>
As the title suggests, we are all one in the same fire, possessing the same universal pain and struggles, yet
so absolutely in love with the universe. The only way to reconcile the immense pain we generate in this world with the
unbridled joy humans are capable of feeling is to fall madly in love with the universe and all it's existence
has to offer. An unconditional love that does not waiver when ephemeral feelings of happiness fade, and one
that is never rooted in any egotistical attachment.
<br><br>
You and I and he and her and we and them; we all exist as one in
the face of overwhelming suffering, and we can all rejoice for falling in love with this universe is the only solace we have.
</div>
<!-- Second Blog Post -->
<div class="post">
<h2>Happiness Imperatives</h2>
<div class="meta">Neuron encoded at 18:52 on October 15, 2024 by Farmer</div>
<p>
<div>Joy is merely an ephemeral feeling brought about by the wonderful fruits of life, while happiness is a general state of mind
in accordance with these three imperatives:
</div>
</p>
<p>
1. The ability to fully live in the present, without being held back by the past or bound by the anxiety of an uncontrollable
future, fully enjoy every moment for what it is
<br><br>
2. Having a general contentness with how your life is without letting anybody or anything disturb your peace.
<br><br>
3. Having a general sense of complete freedom, the freedom to fully be who you truly are---your true unadulturated self,
and the freedom to live how you want to live.
</p>
</div>
</div>
<footer>
<p>sub-cortex below</p>
</footer>
</body>
</html>