Overhaul funding related pages

This commit is contained in:
Joshua Goins 2025-01-20 11:09:13 -05:00
parent 9eb696d743
commit 5086b618ed
7 changed files with 44 additions and 21 deletions

View file

@ -0,0 +1,6 @@
---
title: "Commissions"
aliases:
- /commission
layout: "commission"
---

View file

@ -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).

View file

@ -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).

View file

@ -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)"

View file

@ -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"

View file

@ -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 }}

View file

@ -0,0 +1,34 @@
{{/* Page layout used for the art commission page. */}}
{{ define "main" }}
<h2>{{ .Title }}</h2>
<hr>
{{ $art_config := index $.Site.Data "art-config" }}
{{ if $art_config.commissions }}
<p>My commissions are currently <span id="commission-open">OPEN</span>!</p>
{{ else }}
<p>My commisions are currently <span id="commission-closed">CLOSED</span>!</p>
{{ end }}
<p>I accept commisions for artwork from time to time. You can only commission me through my <a href="https://www.pixiv.net/en/users/58118005/request">Pixiv</a>. If you have a Pixiv account, you can also get a notification when my commissions re-open.</p>
<h3>Previous Work</h3>
<div class="grid-container">
<div class="grid">
<div class="grid-sizer"></div>
<div class="gutter-sizer"></div>
{{ $p := slice "commission" }}
{{ range where .Site.RegularPages "Params.arttags" "intersect" $p }}
{{ if not (.Params.guest) }}
{{ partial "render-art" . }}
{{ end }}
{{ end }}
</div>
</div>
{{ partial "gallery-js" . }}
{{ end }}