Skip to content

Commit f64b29f

Browse files
committed
all bark no bite
1 parent f3a2d1d commit f64b29f

File tree

108 files changed

+2132
-474
lines changed

Some content is hidden

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

108 files changed

+2132
-474
lines changed

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": "2026-02-XX", "text": "TEMPLATE", "link": "" },
3+
{ "date": "2026-02-24", "text": "I have a new blog now.", "link": "/bearblog" },
34
{ "date": "2026-02-17", "text": "Updated the cats page a bit. More updates soon!", "link": "/about/cats" },
45
{ "date": "2026-02-05", "text": "New personality quiz", "link": "/fun/quizzes" },
56
{ "date": "2026-01-31", "text": "File compression tutorial is up!", "link": "/resources/compression-tutorial" },

content/_data/nav.json

Lines changed: 35 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@
8888
"hide": false
8989
}
9090

91+
9192
]
9293
},
9394
{
@@ -248,7 +249,7 @@
248249
},
249250
{
250251
"label": "Resources",
251-
"new": true,
252+
"new": false,
252253
"items": [
253254
{
254255
"link": "/resources/bookmarks",
@@ -295,7 +296,7 @@
295296
{
296297
"link": "/resources/compression-tutorial",
297298
"label": "how to compress files",
298-
"new": true,
299+
"new": false,
299300
"hide": false
300301
},
301302
{
@@ -306,7 +307,38 @@
306307
}
307308
]
308309
},
309-
310+
311+
{
312+
"label": "Offsite",
313+
"new": true,
314+
"items": [ {
315+
"link": "https://neocities.org/site/petrapixel",
316+
"label": "my neocities profile ➚",
317+
"new": false,
318+
"hide": false
319+
},
320+
{
321+
"link": "https://ko-fi.com/petrastipjar",
322+
"label": "my tipjar (ko-fi) ➚",
323+
"new": false,
324+
"hide": false
325+
},
326+
{
327+
"link": "/youtube",
328+
"label": "my youtube channel ➚",
329+
"new": false,
330+
"hide": false
331+
},
332+
{
333+
"link": "/bearblog",
334+
"label": "my bearblog ➚",
335+
"new": true,
336+
"hide": false
337+
}
338+
339+
]
340+
}
341+
,
310342
{
311343
"label": "Coding & Webmastery",
312344
"new": false,

content/_includes/coding.njk

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -269,6 +269,59 @@ testingOnLocalhost: false
269269
>
270270
</div>
271271

272+
<!-- ----------------- SUPPORTERS ----------------- -->
273+
274+
<div
275+
class="aside-box aside-mutuals"
276+
data-nesting="{{ nesting }}"
277+
aria-hidden="true"
278+
>
279+
<div class="aside-box__heading">
280+
<a href="/about/neighbors"
281+
>Supporters<img
282+
src="{{ nesting }}assets/img/layout/icon-supporter.png"
283+
alt=""
284+
aria-hidden="true"
285+
/></a>
286+
</div>
287+
<a href="#aftersupporters" class="skiplink" aria-hidden="true"
288+
>Skip supporters</a
289+
>
290+
<div id="beforesupporters"></div>
291+
<marquee class="marquee aside-mutuals__buttons" scrollamount="5">
292+
{% for site in sites %} {% if site.title != "TEMPLATE" and
293+
site.supporter and not site.hide %}
294+
<a href="{{ site.link }}" title="{{ site.title }}">
295+
<img
296+
src="{{ site.image | prepareImageUrl }}"
297+
alt="{{ site.title }}"
298+
width="88"
299+
height="31"
300+
loading="lazy"
301+
/>
302+
</a>
303+
{% endif %} {% endfor %}
304+
</marquee>
305+
<div><center>None yet!</center></div>
306+
<div id="aftersupporters">
307+
Click
308+
<a href="https://ko-fi.com/petrastipjar/tiers" target="_blank"
309+
>here</a
310+
>
311+
to become a supporter.
312+
</div>
313+
<a href="#beforesupporters" class="skiplink" aria-hidden="true"
314+
>Skip to before neighbours</a
315+
>
316+
</div>
317+
318+
<img
319+
src="{{ nesting }}assets/img/layout/divider6.gif"
320+
alt=""
321+
aria-hidden="true"
322+
style="margin-top: -5px"
323+
/>
324+
272325
<!-- ----------------- Visitors ----------------- -->
273326
<div
274327
class="aside-box side-stats__stat"

content/_includes/petrapixel.njk

Lines changed: 148 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,59 @@ testingOnLocalhost: false
163163
aria-hidden="true"
164164
/>
165165

166+
<!-- ----------------- SUPPORTERS ----------------- -->
167+
168+
<div
169+
class="aside-box aside-mutuals"
170+
data-nesting="{{ nesting }}"
171+
aria-hidden="true"
172+
>
173+
<div class="aside-box__heading">
174+
<a href="/about/neighbors"
175+
>Supporters<img
176+
src="{{ nesting }}assets/img/layout/icon-supporter.png"
177+
alt=""
178+
aria-hidden="true"
179+
/></a>
180+
</div>
181+
<a href="#aftersupporters" class="skiplink" aria-hidden="true"
182+
>Skip supporters</a
183+
>
184+
<div id="beforesupporters"></div>
185+
<marquee class="marquee aside-mutuals__buttons" scrollamount="5">
186+
{% for site in sites %} {% if site.title != "TEMPLATE" and
187+
site.supporter and not site.hide %}
188+
<a href="{{ site.link }}" title="{{ site.title }}">
189+
<img
190+
src="{{ site.image | prepareImageUrl }}"
191+
alt="{{ site.title }}"
192+
width="88"
193+
height="31"
194+
loading="lazy"
195+
/>
196+
</a>
197+
{% endif %} {% endfor %}
198+
</marquee>
199+
<div><center>None yet!</center></div>
200+
<div id="aftersupporters">
201+
Click
202+
<a href="https://ko-fi.com/petrastipjar/tiers" target="_blank"
203+
>here</a
204+
>
205+
to become a supporter.
206+
</div>
207+
<a href="#beforesupporters" class="skiplink" aria-hidden="true"
208+
>Skip to before neighbours</a
209+
>
210+
</div>
211+
212+
<img
213+
src="{{ nesting }}assets/img/layout/divider6.gif"
214+
alt=""
215+
aria-hidden="true"
216+
style="margin-top: -5px"
217+
/>
218+
166219
<!-- ----------------- CONTEST ----------------- -->
167220

168221
<div class="aside-box aside-indie-web-contest" aria-hidden="true">
@@ -181,9 +234,7 @@ testingOnLocalhost: false
181234
height="85"
182235
alt="Trophy"
183236
/>
184-
<div>
185-
<b>Indie Web Contest</b><small>Winners announced!</small>
186-
</div>
237+
<div><b>Indie Web Contest</b><small>View Winners</small></div>
187238
</a>
188239
</div>
189240

@@ -532,7 +583,7 @@ testingOnLocalhost: false
532583
aria-hidden="true"
533584
/>
534585
<a href="https://app.tvtime.com/user/33116783" target="_blank"
535-
>Gravity Falls, Bridgerton
586+
>Gravity Falls
536587
<!--<span style="font-family: sans-serif; font-size: 0.9em">↺</span>--></a
537588
>
538589
</li>
@@ -546,7 +597,7 @@ testingOnLocalhost: false
546597
<a
547598
href="https://www.goodreads.com/user/show/62158941-petra"
548599
target="_blank"
549-
>Mind Magic
600+
>Shady Characters
550601
<!--<span style="font-family: sans-serif; font-size: 0.9em">↺</span
551602
>--></a
552603
>
@@ -559,7 +610,7 @@ testingOnLocalhost: false
559610
aria-hidden="true"
560611
/>
561612
<a href="https://www.backloggd.com/u/Petra1999/" target="_blank"
562-
>Super Mario Wonder</a
613+
>Balatro</a
563614
>
564615
</li>
565616
<li aria-label="obsessed with:">
@@ -680,7 +731,7 @@ testingOnLocalhost: false
680731

681732
<!-- -->
682733

683-
<form method="post" action="https://poll.pollcode.com/66879483">
734+
<form method="post" action="https://poll.pollcode.com/13962324">
684735
<div
685736
style="
686737
background-color: #eeeeee;
@@ -692,36 +743,116 @@ testingOnLocalhost: false
692743
"
693744
>
694745
<div style="padding: 2px 0px 4px 2px">
695-
<strong>do you like recordings of yourself?</strong>
746+
<strong>how old are you?</strong>
696747
</div>
697748
<input
698749
type="radio"
699750
name="answer"
700751
value="1"
701-
id="answer668794831"
752+
id="answer139623241"
702753
style="float: left"
703-
/><label for="answer668794831" style="float: left; width: 150px"
704-
>no, pretty much never</label
754+
/><label for="answer139623241" style="float: left; width: 150px"
755+
>10 or younger</label
705756
>
706757
<div style="clear: both; height: 2px"></div>
707758
<input
708759
type="radio"
709760
name="answer"
710761
value="2"
711-
id="answer668794832"
762+
id="answer139623242"
712763
style="float: left"
713-
/><label for="answer668794832" style="float: left; width: 150px"
714-
>it really depends</label
764+
/><label for="answer139623242" style="float: left; width: 150px"
765+
>11-12</label
715766
>
716767
<div style="clear: both; height: 2px"></div>
717768
<input
718769
type="radio"
719770
name="answer"
720771
value="3"
721-
id="answer668794833"
772+
id="answer139623243"
773+
style="float: left"
774+
/><label for="answer139623243" style="float: left; width: 150px"
775+
>13-14</label
776+
>
777+
<div style="clear: both; height: 2px"></div>
778+
<input
779+
type="radio"
780+
name="answer"
781+
value="4"
782+
id="answer139623244"
783+
style="float: left"
784+
/><label for="answer139623244" style="float: left; width: 150px"
785+
>15-16</label
786+
>
787+
<div style="clear: both; height: 2px"></div>
788+
<input
789+
type="radio"
790+
name="answer"
791+
value="5"
792+
id="answer139623245"
793+
style="float: left"
794+
/><label for="answer139623245" style="float: left; width: 150px"
795+
>17-18</label
796+
>
797+
<div style="clear: both; height: 2px"></div>
798+
<input
799+
type="radio"
800+
name="answer"
801+
value="6"
802+
id="answer139623246"
803+
style="float: left"
804+
/><label for="answer139623246" style="float: left; width: 150px"
805+
>19-20</label
806+
>
807+
<div style="clear: both; height: 2px"></div>
808+
<input
809+
type="radio"
810+
name="answer"
811+
value="7"
812+
id="answer139623247"
813+
style="float: left"
814+
/><label for="answer139623247" style="float: left; width: 150px"
815+
>21-25</label
816+
>
817+
<div style="clear: both; height: 2px"></div>
818+
<input
819+
type="radio"
820+
name="answer"
821+
value="8"
822+
id="answer139623248"
823+
style="float: left"
824+
/><label for="answer139623248" style="float: left; width: 150px"
825+
>26-29</label
826+
>
827+
<div style="clear: both; height: 2px"></div>
828+
<input
829+
type="radio"
830+
name="answer"
831+
value="9"
832+
id="answer139623249"
833+
style="float: left"
834+
/><label for="answer139623249" style="float: left; width: 150px"
835+
>30-35</label
836+
>
837+
<div style="clear: both; height: 2px"></div>
838+
<input
839+
type="radio"
840+
name="answer"
841+
value="10"
842+
id="answer1396232410"
843+
style="float: left"
844+
/><label for="answer1396232410" style="float: left; width: 150px"
845+
>36-39</label
846+
>
847+
<div style="clear: both; height: 2px"></div>
848+
<input
849+
type="radio"
850+
name="answer"
851+
value="11"
852+
id="answer1396232411"
722853
style="float: left"
723-
/><label for="answer668794833" style="float: left; width: 150px"
724-
>i don't mind them, actually</label
854+
/><label for="answer1396232411" style="float: left; width: 150px"
855+
>40 or older</label
725856
>
726857
<div style="clear: both; height: 2px"></div>
727858
<div align="center" style="padding: 3px">

content/_includes/tip-me.njk

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,8 @@
1717
<small
1818
>Last autumn I took in a stray cat that gave birth to 5 kittens in my
1919
apartment. As an unemployed uni student, the expenses were rough for me.
20-
<img aria-hidden="true" src="../assets/img/inline/worried.gif" /> (<b
21-
>200</b
22-
><span style="font-family: serif; font-size: 14px; font-weight: bold"
20+
<img aria-hidden="true" src="../assets/img/inline/worried.gif" />
21+
(200<span style="font-family: serif; font-size: 14px; font-weight: bold"
2322
>€</span
2423
>
2524
for raising the kittens, over <b>1600</b
@@ -28,11 +27,12 @@
2827
>
2928
for castration due to complications.
3029
<img aria-hidden="true" src="../assets/img/inline/sad.gif" />) I
31-
appreciate <i>any</i> help, no matter how small! If you donate monthly
32-
you'll get some nice
30+
appreciate <i>any</i> help, no matter how small! And if you donate
31+
monthly you'll get some nice
3332
<a href="https://ko-fi.com/petrastipjar/tiers" target="_blank"
3433
>benefits</a
35-
>!
34+
>
35+
such as being featured on my site!
3636
<img aria-hidden="true" src="../assets/img/inline/uwu.gif" />
3737
</small>
3838
</p>

0 commit comments

Comments
 (0)