added content to feed posts; removed march drawings feed post stub
This commit is contained in:
@@ -54,8 +54,8 @@
|
||||
{#if entry.images && entry.images.length > 0}
|
||||
<div class="image-gallery">
|
||||
{#each entry.images as i, index}
|
||||
<a href="{entry.path}/{i}">
|
||||
<img loading="lazy" src="{entry.path}/{i}" alt={entry.imageAlts[index]}>
|
||||
<a href="{entry.path}/{i}.webp">
|
||||
<img loading="lazy" src="{entry.path}/{i}.webp" alt={entry.imageAlts[index]}>
|
||||
</a>
|
||||
{/each}
|
||||
</div>
|
||||
|
||||
@@ -34,13 +34,19 @@ export async function load({ params, url }) {
|
||||
// Vite complains if I don't do this even though it's stupid
|
||||
let page = await import(`./${pathArray[0]}/${pathArray[1]}.md`);
|
||||
let md = page.metadata;
|
||||
|
||||
|
||||
let date = md.date;
|
||||
// prevent SvelteKit from being smart and formatting a YYYY-MM-DD string to a Date object or similar
|
||||
if ((date as string).endsWith("0Z")) {
|
||||
date = date.split("T")[0];
|
||||
}
|
||||
|
||||
feedEntries.push({
|
||||
path,
|
||||
content: page.default,
|
||||
title: md.title,
|
||||
subtitle: md.subtitle,
|
||||
date: md.date,
|
||||
date: date,
|
||||
images: md.images,
|
||||
imageAlts: md.imageAlts,
|
||||
});
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
---
|
||||
title: asdf
|
||||
subtitle: asd
|
||||
date: aaa
|
||||
images:
|
||||
imageAlts:
|
||||
---
|
||||
15
src/routes/feed/drawings/lecturer-gender.md
Normal file
15
src/routes/feed/drawings/lecturer-gender.md
Normal file
@@ -0,0 +1,15 @@
|
||||
---
|
||||
title: Lecturer Confused About Gender
|
||||
subtitle: uni doodles
|
||||
date: 2026-04-10
|
||||
images:
|
||||
- drawing
|
||||
- hinge
|
||||
imageAlts:
|
||||
-
|
||||
-
|
||||
---
|
||||
|
||||
I had my first day of uni in quite a while. For my class in descriptive statistics, I used my drawing tablet to take notes in Krita, which also proved excellent for doodling. This drawing was inspired by my lecturer, in good faith, saying: "there's male and female, but there's also diverse, which is a lot of genders, well I actually don't know how many".
|
||||
|
||||
I also noticed that my drawing tablet's hinge broke!! It's very frustrating, though I can fortunately still use it, just without the ability to adjust it (it's just stuck on the max angle).
|
||||
@@ -1,7 +0,0 @@
|
||||
---
|
||||
title: asdf
|
||||
subtitle: asd
|
||||
date: aaa
|
||||
images:
|
||||
imageAlts:
|
||||
---
|
||||
@@ -1,15 +1,21 @@
|
||||
---
|
||||
title: Transparent Phone Back
|
||||
subtitle: asd
|
||||
date: aaa
|
||||
subtitle: see-through
|
||||
date: 2026-04-11 – 2026-04-12
|
||||
images:
|
||||
- scratching.webp
|
||||
- halfway.webp
|
||||
- clear.webp
|
||||
- final.webp
|
||||
- scratching
|
||||
- halfway
|
||||
- clear
|
||||
- final
|
||||
imageAlts:
|
||||
- The back of a Samsung Galaxy S20 FE lying face-down on a deskmat. Toothpicks, cotton pads, and a metal spudger are lying nearby.
|
||||
- A white phone back that's half-scratched off to reveal the clear plastic.
|
||||
- An entirely clear phone back.
|
||||
- A Samsung Galaxy S20 FE with a clear back inside a clear phone case. The phone has a sticker in the middle of the back that shows a lantern with leaves around it.
|
||||
---
|
||||
---
|
||||
|
||||
Inspired by Nothing phones and cool dbrand skins from way back, I gave my phone a clear back mod! I've grown a bit tired of the white back and wanted to do something cool and unique instead of just buying a new back and sticking that on there. I've been using this phone for 5 years and the glue has been struggling hard to hold onto the back, so I didn't feel bad doing this.
|
||||
|
||||
This was arduous and took a lot of time too (5 hours). I used a metal spudger, bamboo toothpicks, and cottons swabs and pads soaked in acetone-free nail polish remover to remove the two paint layers slowly but surely, being careful not to scratch the back too much. It revealed a slightly cloudly but actually decently transparent back that still preserved its slightly pearlescent purple glow!
|
||||
|
||||
Only contra is that the back can't hold on anymore because I removed all the glue, but since I'm keeping the phone in a case at all times, this isn't really an issue. Oh and, the exposure to alcohol made the back develop plenty of hairline cracks around the top and bottom, but it's still in one piece!
|
||||
@@ -2,8 +2,7 @@ export let entries: string[] = [
|
||||
// 2026
|
||||
// "misc/lightyears-font",
|
||||
"electronics/trans-phone",
|
||||
"drawings/mossig-gender",
|
||||
"drawings/2026-march",
|
||||
"drawings/lecturer-gender",
|
||||
// 2024
|
||||
// "electronics/3ds-usb-c",
|
||||
// "electronics/deej0461",
|
||||
|
||||
BIN
static/feed/drawings/lecturer-gender/drawing.webp
Normal file
BIN
static/feed/drawings/lecturer-gender/drawing.webp
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 131 KiB |
BIN
static/feed/drawings/lecturer-gender/hinge.webp
Normal file
BIN
static/feed/drawings/lecturer-gender/hinge.webp
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 254 KiB |
Reference in New Issue
Block a user