Skip to content

Commit 9b97a57

Browse files
committed
i want your love and i want your revenge
1 parent 081780a commit 9b97a57

File tree

106 files changed

+1428
-653
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

106 files changed

+1428
-653
lines changed

.gitignore

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,18 @@
1+
# Always ignore:
12
/public/layout-generator/test
3+
4+
# WIP pages:
5+
/public/layouts
26
/public/resources/templates.html
3-
/public/shrines/geoguessr.html
47
/public/shrines/ggnsp.html
5-
/public/webring/
8+
/public/shrines/ggnsp.css
69
/public/webring.html
7-
/public/layouts
10+
/public/coding/webringu.html
11+
/public/coding/glossary.html
812

9-
# ignore these files because neocities doesn't allow them
13+
# Ignore these files because neocities doesn't allow them:
1014
*.cur
15+
*.mp3
1116

1217
# -----------------------------------------------------------------
1318
# .gitignore

content/_data/changelog.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
[
22
{ "date": "2025-02-XX", "text": "TEMPLATE", "link": "" },
3+
{ "date": "2025-02-09", "text": "Coding bookmarks have moved to their own page and have been expanded!", "link": "/coding/bookmarks" },
4+
{ "date": "2025-02-08", "text": "I've written a manifesto!", "link": "/about/manifesto" },
35
{ "date": "2025-02-05", "text": "I've got media reviews now!", "link": "/about/media-log" },
46
{ "date": "2025-02-01", "text": "The vote for the Indie Web Contest is now open!", "link": "/contest" },
57
{ "date": "2025-01-24", "text": "New png of myself on the homepage! (And other small updates)", "link": "" },

content/_includes/blog.njk

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
testingOnLocalhost: false
3-
noCache: "20250205"
3+
noCache: "20250209"
44
---
55

66
<!DOCTYPE html>
@@ -15,8 +15,7 @@ noCache: "20250205"
1515
{% endif %}
1616
<script src="{{ nesting }}assets/js/main.js?nocache={{ noCache }}"></script>
1717
<link rel="stylesheet" href="{{ nesting }}assets/main.css?nocache={{ noCache }}" />
18-
<meta content="text/html;charset=utf-8" http-equiv="Content-Type" />
19-
<meta content="utf-8" http-equiv="encoding" />
18+
<meta charset="utf-8">
2019
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2120
<link href="{{ nesting }}assets/img/favicon.ico" rel="icon" type="image/x-icon" />
2221

content/_includes/coding.njk

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
testingOnLocalhost: false
3-
noCache: "20250205"
3+
noCache: "20250209"
44
---
55

66
<!DOCTYPE html>
@@ -15,8 +15,7 @@ noCache: "20250205"
1515
{% endif %}
1616
<script src="{{ nesting }}assets/js/main.js?nocache={{ noCache }}"></script>
1717
<link rel="stylesheet" href="{{ nesting }}assets/main.css?nocache={{ noCache }}" />
18-
<meta content="text/html;charset=utf-8" http-equiv="Content-Type" />
19-
<meta content="utf-8" http-equiv="encoding" />
18+
<meta charset="utf-8" />
2019
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2120
<link href="{{ nesting }}assets/img/favicon.ico" rel="icon" type="image/x-icon" />
2221

@@ -83,22 +82,26 @@ noCache: "20250205"
8382
<li>
8483
<a href="/coding/widgets">widgets for free neocities accounts</a>
8584
</li>
85+
<li><a href="/coding/cheatsheet">cheatsheet</a></li>
86+
<li>
87+
<a href="/coding/bookmarks"
88+
>bookmarks (helpful sites)<small class="aside-nav__new"><img src="{{ nesting }}assets/img/layout/new.gif" alt="" aria-hidden="true" /></small
89+
></a>
90+
</li>
8691
<li>
8792
<a href="/coding/checklist">self-study checklist</a>
8893
</li>
89-
<li><a href="/coding/cheatsheet">cheatsheet</a></li>
9094
</ul>
9195
</div>
9296

93-
<div class="coding-navigation-category" aria-label="Guides">
94-
<div class="coding-navigation-category__title">Guides</div>
97+
<div class="coding-navigation-category" aria-label="First Steps">
98+
<div class="coding-navigation-category__title">First Steps</div>
9599
<ul>
96100
<li>
97101
<a href="/coding/how-to-make-a-website">how to make a website</a>
98102
</li>
99103
<li><a href="/coding/common-questions">common questions</a></li>
100104
<li><a href="/coding/common-mistakes">common mistakes</a></li>
101-
<li><a href="/coding/snippets">snippets & tips</a></li>
102105
<li>
103106
<a href="/coding/need-help">troubleshooting guide<small>(+ where/how to ask questions)</small></a>
104107
</li>
@@ -148,6 +151,7 @@ noCache: "20250205"
148151
<div class="coding-navigation-category__title">Miscellaneous</div>
149152
<ul>
150153
<li><a href="/coding/neocities">neocities tips</a></li>
154+
<li><a href="/coding/snippets">code snippets</a></li>
151155
<li>
152156
<a href="/coding/my-setup">my coding setup <small>(vscode settings + extensions)</small></a>
153157
</li>
@@ -227,7 +231,7 @@ noCache: "20250205"
227231

228232
<a class="aside-contest" href="/contest">
229233
<img src="{{ nesting }}assets/img/layout/trophy.gif" width="80" height="85" />
230-
<div><b>Indie Web Contest</b><small>Participate now!</small></div>
234+
<div><b>Indie Web Contest</b><small>Vote now!</small></div>
231235
</a>
232236
</aside>
233237

content/_includes/nav.njk

Lines changed: 19 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,26 @@
2121
</li>
2222
<li>
2323
<details id="menu-aboutsite">
24-
<summary>about the site <small>(5)</small></summary>
24+
<summary>
25+
about the site <small>(6)</small><small class="aside-nav__new"><img src="{{ nesting }}assets/img/layout/new.gif" alt="" aria-hidden="true" /></small>
26+
</summary>
2527
<ul>
2628
<li>
2729
<a href="/about/about-the-site">about the site</a>
2830
</li>
31+
<li>
32+
<a href="/about/manifesto"
33+
>manifesto<small class="aside-nav__new"><img src="{{ nesting }}assets/img/layout/new.gif" alt="" aria-hidden="true" /></small
34+
></a>
35+
</li>
2936
<li>
3037
<a href="/about/faq">faq</a>
3138
</li>
3239
<li class="mobile-only"><a href="/zz/changelog">changelog</a></li>
3340
<li><a href="/about/neighbors">neighbors</a></li>
3441
<li><a href="/about/guestbook">guestbook</a></li>
3542
<li><a href="/about/credits">credits</a></li>
36-
<li><a href="/sitemap">sitemap</a></li>
43+
<!-- <li><a href="/sitemap">sitemap</a></li> -->
3744
</ul>
3845
</details>
3946
</li>
@@ -117,7 +124,7 @@
117124
</li>
118125
<li>
119126
<details id="menu-codinghelp">
120-
<summary>coding & webmastery <small>(18)</small></summary>
127+
<summary>coding & webmastery <small>(19)</small></summary>
121128

122129
<div class="aside-scrollbox custom-scrollbar">
123130
<strong>Tools:</strong>
@@ -126,26 +133,26 @@
126133
<a href="/coding/layout-generator">layout generator ★</a>
127134
</li>
128135
<li>
129-
<a href="/coding/widgets"
130-
>widgets ★<small class="aside-nav__new"><img src="{{ nesting }}assets/img/layout/new.gif" alt="" aria-hidden="true" /></small
131-
></a>
136+
<a href="/coding/widgets">widgets ★</a>
132137
</li>
133138
<li>
134139
<a href="/coding/checklist">self-study checklist</a>
135140
</li>
136141
<li><a href="/coding/cheatsheet">cheatsheet</a></li>
142+
<li>
143+
<a href="/coding/bookmarks"
144+
>bookmarks (helpful sites)<small class="aside-nav__new"><img src="{{ nesting }}assets/img/layout/new.gif" alt="" aria-hidden="true" /></small
145+
></a>
146+
</li>
137147
</ul>
138148

139-
<strong>Guides:</strong>
149+
<strong>First Steps:</strong>
140150
<ul>
141151
<li>
142-
<a href="/coding/how-to-make-a-website"
143-
>how to make a website<small class="aside-nav__new"><img src="{{ nesting }}assets/img/layout/new.gif" alt="" aria-hidden="true" /></small
144-
></a>
152+
<a href="/coding/how-to-make-a-website">how to make a website</a>
145153
</li>
146154
<li><a href="/coding/common-questions">common questions</a></li>
147155
<li><a href="/coding/common-mistakes">common mistakes</a></li>
148-
<li><a href="/coding/snippets">snippets & tips</a></li>
149156
<li><a href="/coding/need-help">need help? (+ troubleshooting guide)</a></li>
150157
<li>
151158
<a href="/coding/code-quality">code quality guide</a>
@@ -185,6 +192,7 @@
185192
<strong>Miscellaneous:</strong>
186193
<ul>
187194
<li><a href="/coding/neocities">neocities tips</a></li>
195+
<li><a href="/coding/snippets">code snippets</a></li>
188196
<li><a href="/coding/my-setup">my coding setup</a></li>
189197
</ul>
190198
</div>

content/_includes/petrapixel.njk

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
testingOnLocalhost: false
3-
noCache: "20250205"
3+
noCache: "20250209"
44
---
55

66
<!DOCTYPE html>
@@ -15,8 +15,7 @@ noCache: "20250205"
1515
{% endif %}
1616
<script src="{{ nesting }}assets/js/main.js?nocache={{ noCache }}"></script>
1717
<link rel="stylesheet" href="{{ nesting }}assets/main.css?nocache={{ noCache }}" />
18-
<meta content="text/html;charset=utf-8" http-equiv="Content-Type" />
19-
<meta content="utf-8" http-equiv="encoding" />
18+
<meta charset="utf-8" />
2019
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2120
<link href="{{ nesting }}assets/img/favicon.ico" rel="icon" type="image/x-icon" />
2221

@@ -299,7 +298,7 @@ noCache: "20250205"
299298
</li>
300299
<li aria-label="watching:">
301300
<img src="{{ nesting }}assets/img/layout/icon-tv.png" alt="" title="watching:" aria-hidden="true" />
302-
<a href="https://app.tvtime.com/user/33116783" target="_blank">Squid Game (s2)</a>
301+
<a href="https://app.tvtime.com/user/33116783" target="_blank">Squid Game (s2), Lost</a>
303302
</li>
304303
<li aria-label="reading:">
305304
<img src="{{ nesting }}assets/img/layout/icon-book.png" alt="" title="reading:" aria-hidden="true" />
@@ -315,7 +314,7 @@ noCache: "20250205"
315314
<li aria-label="obsessed with:">
316315
<img src="{{ nesting }}assets/img/layout/icon-heart.png" alt="" title="obsessed with:" aria-hidden="true" />
317316
<span
318-
>Darius Bowman (JWCT)
317+
>Sayid (from Lost)
319318
<!--<span style="font-family:sans-serif;font-size:0.9em">♡</span>--></span
320319
>
321320
</li>

content/about/about-the-site.html

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ <h2>Accessibility <img alt="" aria-hidden="true" src="../assets/img/inline/stars
177177
<h2>To Do List</h2>
178178
<p>Here's some stuff that I might or might not add to this site at some point!</p>
179179
<ul>
180-
<li>better media log (+ reviews?) (spooky month media?)</li>
180+
<li>spooky month media?</li>
181181
<li>more page speed optimization</li>
182182
<li>blog articles</li>
183183
<li>noscript tags</li>
@@ -191,13 +191,15 @@ <h2>To Do List</h2>
191191
<li>"sticker" page (drag-n-drop)</li>
192192
<li>webring (+code) <b>WIP</b></li>
193193
<li>photobook?</li>
194+
<li>better SEO</li>
194195
</ul>
195196
<br />
196197
<p>Tutorials, guides and resources I want to make:</p>
197198
<ul>
198-
<li>improve layout generator (tutorial)</li>
199+
<li>glossary</li>
200+
<li>improve layout generator (+tutorial) (more fonts, dark mode)</li>
199201
<li>page speed optimization <b>WIP</b></li>
200-
<li>coding bookmarks (+ widgets)</li>
202+
<li>coding bookmarks (+ widgets) <b>WIP</b></li>
201203
<li>backup tutorial</li>
202204
<li>search bar tutorial</li>
203205
<li>free widget for comment section</li>

content/about/credits.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,12 @@ <h2>Codes / Widgets:</h2>
8787
<li>
8888
<a href="https://programmablesearchengine.google.com/controlpanel/all" target="_blank"><b>search bar</b> (by google)</a>
8989
</li>
90+
<li>
91+
<a href="https://www.timeanddate.com/clocks/free.html" target="_blank"><b>my current time</b> (by timeanddate.com)</a>
92+
</li>
93+
<li>
94+
<a href="https://clap.fc2.com/en/" target="_blank"><b>clap button</b> (by fc2 clap)</a>
95+
</li>
9096
</ul>
9197
<hr />
9298

0 commit comments

Comments
 (0)