Compare commits
No commits in common. "a4055590f24cd332c9284bb3990ab05f4b788701" and "17fdb9425bfa69e3f4a2748674d9015df70ff88e" have entirely different histories.
a4055590f2
...
17fdb9425b
5 changed files with 52 additions and 10 deletions
|
|
@ -10,4 +10,3 @@ end_of_line = lf
|
||||||
charset = utf-8
|
charset = utf-8
|
||||||
trim_trailing_whitespace = false
|
trim_trailing_whitespace = false
|
||||||
insert_final_newline = false
|
insert_final_newline = false
|
||||||
max_line_length = 150
|
|
||||||
10
.gitea/workflows/ManualVarCheck.yaml
Normal file
10
.gitea/workflows/ManualVarCheck.yaml
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
name: Var Check
|
||||||
|
run-name: ${{ gitea.actor }} checked the value of the variables
|
||||||
|
on: workflow_dispatch
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
echo-vars:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Echo branch var
|
||||||
|
run: echo ${{ vars.BRANCH }}
|
||||||
|
|
@ -6,6 +6,9 @@ on:
|
||||||
- closed
|
- closed
|
||||||
branches:
|
branches:
|
||||||
- prod
|
- prod
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- prod
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-and-deploy:
|
build-and-deploy:
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,9 @@ import TransFlagPanel from "../../layouts/TransFlagPanel.astro";
|
||||||
import Panel from "../../layouts/Panel.astro";
|
import Panel from "../../layouts/Panel.astro";
|
||||||
import "../../styles/blogIndex.scss";
|
import "../../styles/blogIndex.scss";
|
||||||
|
|
||||||
const latestPosts = (await getCollection("blog")).sort((a, b) => b.data.pubDate.valueOf() - a.data.pubDate.valueOf());
|
const latestPosts = (await getCollection("blog")).sort(
|
||||||
|
(a, b) => b.data.pubDate.valueOf() - a.data.pubDate.valueOf(),
|
||||||
|
);
|
||||||
---
|
---
|
||||||
|
|
||||||
<Main title="Blog">
|
<Main title="Blog">
|
||||||
|
|
@ -16,7 +18,10 @@ const latestPosts = (await getCollection("blog")).sort((a, b) => b.data.pubDate.
|
||||||
latestPosts.map((post) => {
|
latestPosts.map((post) => {
|
||||||
return (
|
return (
|
||||||
<a href={`/blog/${post.id}`} class="blog-post-link">
|
<a href={`/blog/${post.id}`} class="blog-post-link">
|
||||||
<Panel title={`${post.data.title} - ${post.data.pubDate.toLocaleString()}`} customClass="blog-post-panel">
|
<Panel
|
||||||
|
title={`${post.data.title} - ${post.data.pubDate.toLocaleString()}`}
|
||||||
|
customClass="blog-post-panel"
|
||||||
|
>
|
||||||
<p>{post.data.description}</p>
|
<p>{post.data.description}</p>
|
||||||
</Panel>
|
</Panel>
|
||||||
</a>
|
</a>
|
||||||
|
|
|
||||||
|
|
@ -15,25 +15,50 @@ import "../styles/Badge.scss";
|
||||||
</TransFlagPanel>
|
</TransFlagPanel>
|
||||||
<Panel title="bwa">
|
<Panel title="bwa">
|
||||||
<p>
|
<p>
|
||||||
Hai! I'm Riley! A <WavyText colour="transgender">transfem</WavyText> foxgirl who likes programming & self-hosting who lives in the UK. Nice
|
Hai! I'm Riley! A <WavyText colour="transgender">transfem</WavyText> foxgirl
|
||||||
to meet you meow! >^w^<
|
who likes programming & self-hosting who lives in the UK. Nice to meet you meow!
|
||||||
|
>^w^<
|
||||||
</p>
|
</p>
|
||||||
</Panel>
|
</Panel>
|
||||||
<Panel title="My Friens :3">
|
<Panel title="My Friens :3">
|
||||||
<div class="badgeBanner">
|
<div class="badgeBanner">
|
||||||
{FriendBadges.map((badge) => <Badge image={badge.image} url={badge.url} title={badge.title} alt={badge.alt} />)}
|
{
|
||||||
|
FriendBadges.map((badge) => (
|
||||||
|
<Badge
|
||||||
|
image={badge.image}
|
||||||
|
url={badge.url}
|
||||||
|
title={badge.title}
|
||||||
|
alt={badge.alt}
|
||||||
|
/>
|
||||||
|
))
|
||||||
|
}
|
||||||
</div>
|
</div>
|
||||||
</Panel>
|
</Panel>
|
||||||
<Panel title="Other Badges">
|
<Panel title="Other Badges">
|
||||||
<div class="badgeBanner">
|
<div class="badgeBanner">
|
||||||
{OtherBadges.map((badge) => <Badge image={badge.image} url={badge.url} title={badge.title} alt={badge.alt} />)}
|
{
|
||||||
|
OtherBadges.map((badge) => (
|
||||||
|
<Badge
|
||||||
|
image={badge.image}
|
||||||
|
url={badge.url}
|
||||||
|
title={badge.title}
|
||||||
|
alt={badge.alt}
|
||||||
|
/>
|
||||||
|
))
|
||||||
|
}
|
||||||
</div>
|
</div>
|
||||||
</Panel>
|
</Panel>
|
||||||
<Panel title="Webring!">
|
<Panel title="Webring!">
|
||||||
<p>
|
<p>
|
||||||
<a href="https://tilde.linuxposting.xyz/ring.py?prev&foxgirlriley.neocities.org">←</a>
|
<a
|
||||||
|
href="https://tilde.linuxposting.xyz/ring.py?prev&foxgirlriley.neocities.org"
|
||||||
|
>🡠</a
|
||||||
|
>
|
||||||
<a href="#" title="Coming soon">Linuxposting webring</a>
|
<a href="#" title="Coming soon">Linuxposting webring</a>
|
||||||
<a href="https://tilde.linuxposting.xyz/ring.py?next&foxgirlriley.neocities.org">→</a>
|
<a
|
||||||
|
href="https://tilde.linuxposting.xyz/ring.py?next&foxgirlriley.neocities.org"
|
||||||
|
>🡢</a
|
||||||
|
>
|
||||||
</p>
|
</p>
|
||||||
</Panel>
|
</Panel>
|
||||||
</Main>
|
</Main>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue