Compare commits
No commits in common. "a4055590f24cd332c9284bb3990ab05f4b788701" and "17fdb9425bfa69e3f4a2748674d9015df70ff88e" have entirely different histories.
a4055590f2
...
17fdb9425b
5 changed files with 52 additions and 10 deletions
|
|
@ -9,5 +9,4 @@ indent_size = 2
|
|||
end_of_line = lf
|
||||
charset = utf-8
|
||||
trim_trailing_whitespace = false
|
||||
insert_final_newline = false
|
||||
max_line_length = 150
|
||||
insert_final_newline = false
|
||||
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
|
||||
branches:
|
||||
- prod
|
||||
push:
|
||||
branches:
|
||||
- prod
|
||||
|
||||
jobs:
|
||||
build-and-deploy:
|
||||
|
|
|
|||
|
|
@ -5,7 +5,9 @@ import TransFlagPanel from "../../layouts/TransFlagPanel.astro";
|
|||
import Panel from "../../layouts/Panel.astro";
|
||||
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">
|
||||
|
|
@ -16,7 +18,10 @@ const latestPosts = (await getCollection("blog")).sort((a, b) => b.data.pubDate.
|
|||
latestPosts.map((post) => {
|
||||
return (
|
||||
<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>
|
||||
</Panel>
|
||||
</a>
|
||||
|
|
|
|||
|
|
@ -15,25 +15,50 @@ import "../styles/Badge.scss";
|
|||
</TransFlagPanel>
|
||||
<Panel title="bwa">
|
||||
<p>
|
||||
Hai! I'm Riley! A <WavyText colour="transgender">transfem</WavyText> foxgirl who likes programming & self-hosting who lives in the UK. Nice
|
||||
to meet you meow! >^w^<
|
||||
Hai! I'm Riley! A <WavyText colour="transgender">transfem</WavyText> foxgirl
|
||||
who likes programming & self-hosting who lives in the UK. Nice to meet you meow!
|
||||
>^w^<
|
||||
</p>
|
||||
</Panel>
|
||||
<Panel title="My Friens :3">
|
||||
<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>
|
||||
</Panel>
|
||||
<Panel title="Other Badges">
|
||||
<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>
|
||||
</Panel>
|
||||
<Panel title="Webring!">
|
||||
<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="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>
|
||||
</Panel>
|
||||
</Main>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue