diff --git a/content/art/commission/_index.md b/content/art/commission/_index.md new file mode 100644 index 0000000..0613bd8 --- /dev/null +++ b/content/art/commission/_index.md @@ -0,0 +1,6 @@ +--- +title: "Commissions" +aliases: +- /commission +layout: "commission" +--- diff --git a/content/commission.md b/content/commission.md deleted file mode 100644 index 13610a3..0000000 --- a/content/commission.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -title: "Commissions" ---- - -I'm open for art commission work! See more information on my [Pixiv page](https://www.pixiv.net/en/users/58118005/request). diff --git a/content/fund.md b/content/fund.md index 512f6ad..53ad000 100644 --- a/content/fund.md +++ b/content/fund.md @@ -2,16 +2,4 @@ title: "Fund" --- -I have a full-time job, so I'm not hurting for money. If you still wish to donate or tip me for something I did, that's still appreciated! If you wish to receive something in return, I'm [open for art commissions](/commission). - -I am not an independent contractor, and cannot directly accept money in return for specific software tasks. - -# Ko-Fi - -[Ko-Fi is preferred](https://ko-fi.com/redstrate) because it's easy, and they take no processing fees. You can even set a little comment to go along with your donation! - -{{< kofi >}} - -# PayPal - -You can use [PayPal directly](https://paypal.me/redstrate) if Ko-fi doesn't work for you. +I have a full-time job, so I'm not hurting for money right now. You may want to check out [my commissions page](/commission). diff --git a/data/art/2024/commission-midnighto51-2.json b/data/art/2024/commission-midnighto51-2.json index 6f672ef..0ae2156 100644 --- a/data/art/2024/commission-midnighto51-2.json +++ b/data/art/2024/commission-midnighto51-2.json @@ -6,7 +6,7 @@ "bluesky_url": "https://bsky.app/profile/redstrate.com/post/3lc6i7menf22b", "program": "Krita, Blender", "title": "commission for midnighto51", - "tags": ["fan art", "request"], + "tags": ["fan art", "commission"], "languages": { "jp": { "title": "commission for midnighto51 (2)" diff --git a/data/art/2024/commission-midnighto51.json b/data/art/2024/commission-midnighto51.json index 36a7e6c..0a2dfd9 100644 --- a/data/art/2024/commission-midnighto51.json +++ b/data/art/2024/commission-midnighto51.json @@ -6,7 +6,7 @@ "bluesky_url": "https://bsky.app/profile/redstrate.com/post/3lbmxvdfrhk2t", "program": "Krita, Blender", "title": "commission for midnighto51", - "tags": ["fan art", "request"], + "tags": ["fan art", "commission"], "languages": { "jp": { "title": "commission for midnighto51" diff --git a/themes/red/layouts/_default/art.html b/themes/red/layouts/_default/art.html index 3b5d61b..930f886 100644 --- a/themes/red/layouts/_default/art.html +++ b/themes/red/layouts/_default/art.html @@ -63,7 +63,7 @@ {{ partial "art-fancy-button" . }} {{ end }} - {{ with $.Site.GetPage "/commission" }} + {{ with $.Site.GetPage "/art/commission" }} {{ .Scratch.Set "title" .Title }} {{ .Scratch.Set "img" "commissions.png" }} {{ .Scratch.Set "link" .RelPermalink }} diff --git a/themes/red/layouts/_default/commission.html b/themes/red/layouts/_default/commission.html new file mode 100644 index 0000000..ef5b0c9 --- /dev/null +++ b/themes/red/layouts/_default/commission.html @@ -0,0 +1,34 @@ +{{/* Page layout used for the art commission page. */}} + +{{ define "main" }} +

{{ .Title }}

+
+ + {{ $art_config := index $.Site.Data "art-config" }} + {{ if $art_config.commissions }} +

My commissions are currently OPEN!

+ {{ else }} +

My commisions are currently CLOSED!

+ {{ end }} + +

I accept commisions for artwork from time to time. You can only commission me through my Pixiv. If you have a Pixiv account, you can also get a notification when my commissions re-open.

+ +

Previous Work

+ +
+
+
+
+ + {{ $p := slice "commission" }} + {{ range where .Site.RegularPages "Params.arttags" "intersect" $p }} + {{ if not (.Params.guest) }} + {{ partial "render-art" . }} + {{ end }} + {{ end }} +
+
+ + {{ partial "gallery-js" . }} + +{{ end }}