diff --git a/src/routes/art/drawings/+page.svelte b/src/routes/art/drawings/+page.svelte new file mode 100644 index 0000000..7483a7f --- /dev/null +++ b/src/routes/art/drawings/+page.svelte @@ -0,0 +1,108 @@ + + + + Drawing Gallery | denizk0461 + + +{#snippet drawingGalleryEntry({d}: {d: Drawing})} +
+ {d.imgAlt} +
+

{d.title} {d.date}

+ {#each d.notes as note} +

{note}

+ {/each} + view full-size +
+
+{/snippet} + + + + +
+ {#each drawings as d} + {@render drawingGalleryEntry({d})} + {/each} +
+
+ + \ No newline at end of file diff --git a/src/routes/art/drawings/drawings.ts b/src/routes/art/drawings/drawings.ts new file mode 100644 index 0000000..f34ebb3 --- /dev/null +++ b/src/routes/art/drawings/drawings.ts @@ -0,0 +1,77 @@ +export interface Drawing { + title: string; + date: string; + notes: string[]; + img: string; + imgAlt: string; +} + +export let drawings: Drawing[] = [ + { + title: "", + date: "2026-03-04", + notes: [ + "", + ], + img: "/blog/2026/0205/27-1.webp", + imgAlt: "", + }, + { + title: "", + date: "2026-02-27", + notes: [ + "", + ], + img: "/blog/2026/0205/22.webp", + imgAlt: "", + }, + { + title: "Porter Robinson fanart", + date: "2026-02-26", + notes: [ + "I drew the Worlds hand for practice and then decided to draw Po-Uta's head as well. I realised then that learning to draw gave me the ability to draw fanart.", + "I had never considered that possibility before.", + ], + img: "/blog/2026/0205/21.webp", + imgAlt: "", + }, + { + title: "", + date: "2026-02-23", + notes: [ + "", + ], + img: "/blog/2026/0205/18.webp", + imgAlt: "", + }, + { + title: "", + date: "2026-02-18", + notes: [ + "", + ], + img: "/blog/2026/0205/13-2.webp", + imgAlt: "", + }, + { + title: "bread girl", + date: "2026-01-30", + notes: [ + "I drew her during a game of Wizard. I initially wanted to make her chew on a whole loaf but I didn't know how to draw that.", + "Wasn't really sure how to convey that her mouth is full either, but in retrospect, I could have exaggerated the bow in her lower eyelids to do so.", + "I like her eyes. Her head could be taller, actually.", + ], + img: "2026/breadgirl.webp", + imgAlt: "An anime-style girl chewing on a piece of bread. She wears a ponytail and a sleeveless top.", + }, + { + title: "test", + date: "2026-01-29", + notes: [ + "A small sketch (only like 4cm wide) that I drew with a ballpoint pen on pink paper. The fact that I was able to sketch this, without any prior practice, plus an intrinsic want to be able to draw made me seriously consider learning to draw.", + "Having learned just a little bit about drawing, I can say now (a month and a half later) that this isn't great, but it served its purpose of making me start to draw!", + ], + img: "/blog/2026/0129/girl.webp", + imgAlt: "sample alt text", + }, +]; \ No newline at end of file diff --git a/static/art/drawings/2026/breadgirl.webp b/static/art/drawings/2026/breadgirl.webp new file mode 100644 index 0000000..6f3e3bb Binary files /dev/null and b/static/art/drawings/2026/breadgirl.webp differ diff --git a/static/art/drawings/banner.webp b/static/art/drawings/banner.webp new file mode 100644 index 0000000..8490fd8 Binary files /dev/null and b/static/art/drawings/banner.webp differ