More websites, better licenses with TOML, more minute improvements
This commit is contained in:
parent
5559cea720
commit
92123a305d
26 changed files with 414 additions and 138 deletions
|
|
@ -1,13 +1,14 @@
|
|||
---
|
||||
import BaseLayout from "../layouts/BaseLayout.astro";
|
||||
import IconArrowUpRightFromSquare from "../components/icons/IconArrowUpRightFromSquare.astro";
|
||||
import IconBriefcase from "../components/icons/IconBriefcase.astro";
|
||||
import IconEkasPortal from "../components/icons/brands/IconEkasPortal.astro";
|
||||
import IconFurAffinity from "../components/icons/brands/IconFurAffinity.astro";
|
||||
import IconInkbunny from "../components/icons/brands/IconInkbunny.astro";
|
||||
import IconSoFurry from "../components/icons/brands/IconSoFurry.astro";
|
||||
import IconSubscribeStar from "../components/icons/brands/IconSubscribeStar.astro";
|
||||
import IconWeasyl from "../components/icons/brands/IconWeasyl.astro";
|
||||
import { IconArrowUpRightFromSquare, IconBriefcase } from "../components/icons";
|
||||
import {
|
||||
IconEkasPortal,
|
||||
IconFurAffinity,
|
||||
IconInkbunny,
|
||||
IconSoFurry,
|
||||
IconSubscribeStar,
|
||||
IconWeasyl,
|
||||
} from "../components/icons/brands";
|
||||
|
||||
import { TOS_COMMISSION_STATUS } from "../data/tos";
|
||||
import { SUBSCRIBESTAR_ENABLED } from "../data/subscribestar";
|
||||
|
|
@ -118,7 +119,7 @@ import { SUBSCRIBESTAR_ENABLED } from "../data/subscribestar";
|
|||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section aria-labelledby="title-story-commissions">
|
||||
<section id="commissions" aria-labelledby="title-story-commissions">
|
||||
<h2 id="title-story-commissions" class="my-4 text-lg sm:my-6 sm:text-2xl">Story commissions</h2>
|
||||
{
|
||||
TOS_COMMISSION_STATUS == "CLOSED" ? (
|
||||
|
|
@ -166,7 +167,7 @@ import { SUBSCRIBESTAR_ENABLED } from "../data/subscribestar";
|
|||
)
|
||||
}
|
||||
</section>
|
||||
<section aria-labelledby="title-paid-subscriptions">
|
||||
<section id="subscribestar" aria-labelledby="title-paid-subscriptions">
|
||||
<h2 id="title-paid-subscriptions" class="my-4 text-lg sm:my-6 sm:text-2xl">Paid subscriptions and tips</h2>
|
||||
{
|
||||
SUBSCRIBESTAR_ENABLED ? (
|
||||
|
|
@ -200,7 +201,7 @@ import { SUBSCRIBESTAR_ENABLED } from "../data/subscribestar";
|
|||
) : null
|
||||
}
|
||||
</section>
|
||||
<section aria-labelledby="title-other-work">
|
||||
<section id="other" aria-labelledby="title-other-work">
|
||||
<h2 id="title-other-work" class="my-4 text-lg sm:my-6 sm:text-2xl">Other work</h2>
|
||||
<p class="mb-6 mt-3 sm:mb-8 sm:mt-4">
|
||||
Other than the above, I've done some miscellaneous work. This includes
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue