Add new art
This commit is contained in:
parent
9291ca75de
commit
f766c6c412
6 changed files with 26 additions and 3 deletions
|
@ -215,11 +215,16 @@ languages:
|
|||
url: 'art'
|
||||
weight: 2
|
||||
socials:
|
||||
- name: 'bluesky'
|
||||
params:
|
||||
- img: 'icons/bluesky.svg'
|
||||
url: 'https://bsky.app/profile/redstrate.com'
|
||||
weight: 2
|
||||
- name: 'pixiv'
|
||||
params:
|
||||
- img: 'icons/pixiv.svg'
|
||||
url: 'https://www.pixiv.net/en/users/58118005'
|
||||
weight: 2
|
||||
weight: 3
|
||||
|
||||
related:
|
||||
includeNewer: true
|
||||
|
|
|
@ -43,6 +43,7 @@
|
|||
"mastodon_url" $data.mastodon_url
|
||||
"pixiv_url" $data.pixiv_url
|
||||
"newgrounds_url" $data.newgrounds_url
|
||||
"bluesky_url" $data.bluesky_url
|
||||
"program" $data.program
|
||||
"guest" (eq $year "guest")
|
||||
"threed" (eq $data.type "3D")
|
||||
|
|
|
@ -63,6 +63,7 @@
|
|||
"mastodon_url" $data.mastodon_url
|
||||
"pixiv_url" $data.pixiv_url
|
||||
"newgrounds_url" $data.newgrounds_url
|
||||
"bluesky_url" $data.bluesky_url
|
||||
"program" $data.program
|
||||
"guest" (eq $year "guest")
|
||||
"threed" (eq $data.type "3D")
|
||||
|
|
11
data/art/2024/candy.json
Normal file
11
data/art/2024/candy.json
Normal 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
|
@ -11,14 +11,19 @@
|
|||
{{ 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>
|
||||
|
||||
<div style="margin: 10px; text-align: center">
|
||||
|
||||
{{ with .Params.mastodon_url }}
|
||||
<a href="{{ . }}"><img class="symbolic-icon" alt="Mastodon icon" title="Mastodon" width="32" height="32" src="/icons/mastodon.svg"/></a>
|
||||
{{ 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 }}
|
||||
<a href="{{ . }}"><img class="symbolic-icon" alt="Pixiv icon" title="Pixiv" width="32" height="32" src="/icons/pixiv.svg"/></a>
|
||||
{{ end }}
|
||||
|
|
Loading…
Add table
Reference in a new issue