Add new art

This commit is contained in:
Joshua Goins 2024-11-19 20:55:44 -05:00
parent 9291ca75de
commit f766c6c412
6 changed files with 26 additions and 3 deletions

View file

@ -215,11 +215,16 @@ languages:
url: 'art' url: 'art'
weight: 2 weight: 2
socials: socials:
- name: 'bluesky'
params:
- img: 'icons/bluesky.svg'
url: 'https://bsky.app/profile/redstrate.com'
weight: 2
- name: 'pixiv' - name: 'pixiv'
params: params:
- img: 'icons/pixiv.svg' - img: 'icons/pixiv.svg'
url: 'https://www.pixiv.net/en/users/58118005' url: 'https://www.pixiv.net/en/users/58118005'
weight: 2 weight: 3
related: related:
includeNewer: true includeNewer: true

View file

@ -43,6 +43,7 @@
"mastodon_url" $data.mastodon_url "mastodon_url" $data.mastodon_url
"pixiv_url" $data.pixiv_url "pixiv_url" $data.pixiv_url
"newgrounds_url" $data.newgrounds_url "newgrounds_url" $data.newgrounds_url
"bluesky_url" $data.bluesky_url
"program" $data.program "program" $data.program
"guest" (eq $year "guest") "guest" (eq $year "guest")
"threed" (eq $data.type "3D") "threed" (eq $data.type "3D")

View file

@ -63,6 +63,7 @@
"mastodon_url" $data.mastodon_url "mastodon_url" $data.mastodon_url
"pixiv_url" $data.pixiv_url "pixiv_url" $data.pixiv_url
"newgrounds_url" $data.newgrounds_url "newgrounds_url" $data.newgrounds_url
"bluesky_url" $data.bluesky_url
"program" $data.program "program" $data.program
"guest" (eq $year "guest") "guest" (eq $year "guest")
"threed" (eq $data.type "3D") "threed" (eq $data.type "3D")

11
data/art/2024/candy.json Normal file
View file

@ -0,0 +1,11 @@
{
"alt_text": "Drawing of my swordswoman character, about to eat a piece of orange candy. She looks quite happy to do so. She is dressed in her usual garb, consisting of a dark brown dress. The sack of candy she is holding is non-descript, except for one stylized candy symbol with cartoon eyes.",
"characters": [
"Mysterious Swordswoman"
],
"date": "2024-11-19",
"mastodon_url": "https://mastodon.art/@redstrate/113512732144638158",
"bluesky_url": "https://bsky.app/profile/redstrate.com/post/3lbdt3b3gfk25",
"program": "Krita",
"title": "Candy 🍬"
}

File diff suppressed because one or more lines are too long

View file

@ -11,14 +11,19 @@
{{ end }} {{ end }}
{{ end }} {{ end }}
{{ if or .Params.mastodon_url .Params.pixiv_url }} {{ if or (or .Params.mastodon_url .Params.pixiv_url) .Params.bluesky_url }}
<p><strong>Also available on</strong></p> <p><strong>Also available on</strong></p>
<div style="margin: 10px; text-align: center"> <div style="margin: 10px; text-align: center">
{{ with .Params.mastodon_url }} {{ with .Params.mastodon_url }}
<a href="{{ . }}"><img class="symbolic-icon" alt="Mastodon icon" title="Mastodon" width="32" height="32" src="/icons/mastodon.svg"/></a> <a href="{{ . }}"><img class="symbolic-icon" alt="Mastodon icon" title="Mastodon" width="32" height="32" src="/icons/mastodon.svg"/></a>
{{ end }} {{ end }}
{{ with .Params.bluesky_url }}
<a href="{{ . }}"><img class="symbolic-icon" alt="Bluesky icon" title="Bluesky" width="32" height="32" src="/icons/bluesky.svg"/></a>
{{ end }}
{{ with .Params.pixiv_url }} {{ with .Params.pixiv_url }}
<a href="{{ . }}"><img class="symbolic-icon" alt="Pixiv icon" title="Pixiv" width="32" height="32" src="/icons/pixiv.svg"/></a> <a href="{{ . }}"><img class="symbolic-icon" alt="Pixiv icon" title="Pixiv" width="32" height="32" src="/icons/pixiv.svg"/></a>
{{ end }} {{ end }}