Skip to content

Commit 2cdd891

Browse files
committed
son, have you seen the world?
1 parent 9b97a57 commit 2cdd891

File tree

103 files changed

+2624
-1946
lines changed

Some content is hidden

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

103 files changed

+2624
-1946
lines changed

.eleventy.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ module.exports = function (eleventyConfig) {
1111
eleventyConfig.setUseGitIgnore(false);
1212

1313
// This will copy these folders to the output without modifying them at all
14-
// eleventyConfig.addPassthroughCopy("content/assets");
14+
eleventyConfig.addPassthroughCopy("content/layout-generator/test");
1515

1616
// This defines which files will be copied
1717
eleventyConfig.setTemplateFormats(["html", "njk", "txt", "js", "css", "xml", "json"]);

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Always ignore:
22
/public/layout-generator/test
3+
notes.txt
34

45
# WIP pages:
56
/public/layouts

content/_data/changelog.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[
22
{ "date": "2025-02-XX", "text": "TEMPLATE", "link": "" },
3+
{ "date": "2025-02-12", "text": "The layout generator was updated: New features, new looks, and other improvements!", "link": "/coding/layout-generator" },
34
{ "date": "2025-02-09", "text": "Coding bookmarks have moved to their own page and have been expanded!", "link": "/coding/bookmarks" },
45
{ "date": "2025-02-08", "text": "I've written a manifesto!", "link": "/about/manifesto" },
56
{ "date": "2025-02-05", "text": "I've got media reviews now!", "link": "/about/media-log" },

content/_includes/blog.njk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
testingOnLocalhost: false
3-
noCache: "20250209"
3+
noCache: "20250212"
44
---
55

66
<!DOCTYPE html>

content/_includes/coding.njk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
testingOnLocalhost: false
3-
noCache: "20250209"
3+
noCache: "20250212"
44
---
55

66
<!DOCTYPE html>

content/_includes/petrapixel.njk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
testingOnLocalhost: false
3-
noCache: "20250209"
3+
noCache: "20250212"
44
---
55

66
<!DOCTYPE html>

content/about/about-the-site.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -196,10 +196,9 @@ <h2>To Do List</h2>
196196
<br />
197197
<p>Tutorials, guides and resources I want to make:</p>
198198
<ul>
199-
<li>glossary</li>
200-
<li>improve layout generator (+tutorial) (more fonts, dark mode)</li>
199+
<li>glossary <b>WIP</b></li>
200+
<li>improve layout generator (+tutorial) (dark mode)</li>
201201
<li>page speed optimization <b>WIP</b></li>
202-
<li>coding bookmarks (+ widgets) <b>WIP</b></li>
203202
<li>backup tutorial</li>
204203
<li>search bar tutorial</li>
205204
<li>free widget for comment section</li>
@@ -224,6 +223,7 @@ <h2>Link back to me!</h2>
224223
</section>
225224
<section>
226225
<h2>Old Looks</h2>
226+
<p>(<a href="https://web.archive.org/web/20240101000000*/https://petrapixel.neocities.org" target="_blank">Wayback Machine</a>)</p>
227227

228228
<p>Old button: <img src="../assets/img/etc/oldbutton.gif" /> (Please don't use it.)</p>
229229
<!-- <br /> -->

content/about/blinkies.html

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,4 +138,13 @@ <h2>Userboxes</h2>
138138
<div><img width="235" height="50" src="../assets/img/blinkies/userboxes/uwu.png" alt="Userbox: This user likes to make the :3 face" /></div>
139139
<div><img width="235" height="50" src="../assets/img/blinkies/userboxes/writer.png" alt="Userbox: This user is a writer but never writes" /></div>
140140
</div>
141+
142+
<hr />
143+
<center style="line-height: 1">
144+
(\_/)<br />
145+
(='.'=)<br />
146+
(")_(")<br />
147+
<br />
148+
This is Bunny. Copy and paste Bunny into your webpage to help him gain world domination.
149+
</center>
141150
</section>

content/about/media-log.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ function initMediaLog() {
1212
currentYearTags = new Set([]);
1313
const year = yearEl.getAttribute("data-year");
1414
const months = buildMonths(yearEl, year);
15-
output += `<h2 class="media-log__item ${year} ${Array.from(currentYearTags).join(" ")}">${year}</h2>`;
15+
const space = " ";
16+
output += `<h2 class="media-log__item ${year} ${Array.from(currentYearTags).join(space)}">${year}</h2>`;
1617
output += months;
1718
});
1819

content/coding/bookmarks.html

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,11 @@ <h3 id="tools">Tools</h3>
8181
</div>
8282
<div class="bookmark">
8383
<div class="bookmark__title"><a href="https://codepen.io/" target="_blank" rel="noopener noreferrer">Codepen</a></div>
84-
<div class="bookmark__description">quickly test and share code snippets</div>
84+
<div class="bookmark__description">quickly test and share html/css/js code snippets</div>
85+
</div>
86+
<div class="bookmark">
87+
<div class="bookmark__title"><a href="https://pastebin.com/" target="_blank" rel="noopener noreferrer">Pastebin</a></div>
88+
<div class="bookmark__description">quickly share code snippets or other text files</div>
8589
</div>
8690
<div class="bookmark">
8791
<div class="bookmark__title"><a href="https://autoprefixer.github.io/" target="_blank" rel="noopener noreferrer">Autoprefixer</a></div>

0 commit comments

Comments
 (0)