changed home page message and misc stuff
This commit is contained in:
parent
dfba7f8f29
commit
ea235120f8
7 changed files with 106 additions and 114 deletions
|
@ -1,8 +1,9 @@
|
|||
<h1 >Hi!</h1>
|
||||
<p>I'm <span id="agender">agender</span>, <span id="aromantic">aromantic</span>, <span id="pansexual">pansexual</span>.</p>
|
||||
<h1 >Hi! My name's Sunny.</h1>
|
||||
|
||||
* artist
|
||||
* writer
|
||||
* audio and video editor
|
||||
* graphic designer
|
||||
* web designer
|
||||
I'm:
|
||||
* an artist
|
||||
* a writer
|
||||
* an audio and video editor
|
||||
* a graphic designer
|
||||
* a web designer
|
||||
<p>I'm also <span id="agender">agender</span>, <span id="aromantic">aromantic</span>, <span id="pansexual">pansexual</span>.</p>
|
|
@ -5,15 +5,18 @@ modified: 2025-05-23
|
|||
blurb: <p>i hate luxon</p><p><img src="/assets/img/blog/luxon.png"></p>
|
||||
avatar: /assets/img/art/sundae_glistening.png
|
||||
---
|
||||
|
||||
Hi... I spent a good 8+ months not working on much of anything, really.
|
||||
|
||||
On a whim, I decided I wasn't happy with how my website was looking, so I've been spending the last week or so working on this as of writing.
|
||||
|
||||
### So, what's new?
|
||||
|
||||
A lot, actually. For starters, I ported the site over to a fresh build of {%ai "https://github.com/11ty/eleventy/releases/tag/v3.1.0"%}Eleventy 3.1.0{%endai%}, which was way easier than I expected, [since I originally started from a base](/blog/break-time#i-have-no-some-idea-what-i'm-doing).
|
||||
It's now [open source](https://bunsin.space/forgejo/sundae/website) under <abbr title="Creative Commons Attribution-NonCommercial-ShareAlike 4.0">CC-BY-NC-SA 4.0</abbr>!
|
||||
|
||||
I figured out that standard markdown doesn't implement header links (without manually adding in HTML with `id` attributes.), so I ended up switching to {%ai"https://github.com/markdown-it/markdown-it"%}markdown-it{%endai%} and {%ai"https://github.com/valeriangalliat/markdown-it-anchor"%}markdown-it-anchor{%endai%}.
|
||||
Besides that, a lot, actually. For starters, I ported the site over to a fresh build of {%ai "https://github.com/11ty/eleventy/releases/tag/v3.1.0"%}Eleventy 3.1.0{%endai%}, which was way easier than I expected, [since I originally started from a base](/blog/break-time#i-have-no-some-idea-what-i'm-doing).
|
||||
|
||||
I figured out that standard markdown doesn't implement header links (without manually adding in `HTML` headings with `id` attributes.), so I ended up switching to {%ai"https://github.com/markdown-it/markdown-it"%}markdown-it{%endai%} and {%ai"https://github.com/valeriangalliat/markdown-it-anchor"%}markdown-it-anchor{%endai%}.
|
||||
|
||||
I also switched to using {% ai "https://date-fns.org/" %}date-fns{% endai %} instead of {%ai"https://github.com/moment/luxon/"%}Luxon{%endai%}. This library is just way better documented, for someone that still sort of struggles with JavaScript.
|
||||
|
||||
|
@ -22,16 +25,16 @@ Here's a snippet of my time filters in my `eleventy.config.js`:
|
|||
```js
|
||||
import { format } from "date-fns";
|
||||
|
||||
eleventyConfig.addFilter("ISO", (dateObj) => {
|
||||
return format(dateObj, ("yyyy-LL-dd"));
|
||||
});
|
||||
eleventyConfig.addFilter("readable", (dateObj) => {
|
||||
return format(dateObj, ("LLLL d, yyyy"));
|
||||
});
|
||||
eleventyConfig.addFilter("ISO", (dateObj) => {
|
||||
return format(dateObj, "yyyy-LL-dd");
|
||||
});
|
||||
eleventyConfig.addFilter("readable", (dateObj) => {
|
||||
return format(dateObj, "LLLL d, yyyy");
|
||||
});
|
||||
```
|
||||
|
||||
### Smaller stuff
|
||||
|
||||
I decided to change the presentation of my [interests](/home#interests), previously a shelf with game cases and CD jewel cases, to instead be desktop shortcut entries.
|
||||
|
||||
<figure><img src="/assets/img/blog/shelf.png"><figcaption>How the shelving featuring my personal favorite games and music looked before.</figcaption></figure>
|
||||
<section><figure><img src="/assets/img/blog/shelf.png"><figcaption>How the shelving featuring my personal favorite games and music looked before.</figcaption></figure><figure><img src="/assets/img/blog/media.png"><figcaption>How it looks now.</figcaption></figure></section>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue