Compare commits

..

3 Commits

Author SHA1 Message Date
Cutieguwu
68263b1bad Fix rss.xml form. 2026-02-27 20:07:22 -05:00
Olivia Brooks
b8f65f2ce4 Fix copying with a lazy patch. 2026-02-27 10:49:45 -05:00
Olivia Brooks
820a1f357a Fix panel alignments, heights, and banner height. 2026-02-26 12:45:53 -05:00
3 changed files with 9 additions and 10 deletions

View File

@@ -83,17 +83,13 @@ do
elif [ "$x" == 'copy' ] elif [ "$x" == 'copy' ]
then then
cmd='cp -R'
files=(
'src/.well-known/security.txt'
'src/feed/rss.xml'
'src/robots.txt'
)
mkdir -p target/.well-known mkdir -p target/.well-known
mkdir -p target/feed mkdir -p target/feed
cp 'src/feed/rss.xml' 'target/feed/rss.xml'
cp 'src/robots.txt' 'target/robots.txt'
cp 'src/.well-known/security.txt' 'target/.well-known/security.txt'
action=Copying... action=Copying...
elif [ "$x" == 'conv-img' ] elif [ "$x" == 'conv-img' ]

View File

@@ -13,10 +13,12 @@
<title>Optical Recovery</title> <title>Optical Recovery</title>
<pubDate>10 January, 2026</pubDate> <pubDate>10 January, 2026</pubDate>
<link>https://www.cutieguwu.ca/blog/posts/5_optical_recovery.html</link> <link>https://www.cutieguwu.ca/blog/posts/5_optical_recovery.html</link>
<description>Introducing my optical media recovery utility, and some challenges in development.</description> <description>
Introducing my optical media recovery utility, and some challenges in development.
</description>
<category>Coding</category> <category>Coding</category>
<category>Programming</category> <category>Programming</category>
<category>Optical Media</category <category>Optical Media</category>
<category>Rust</category> <category>Rust</category>
</item> </item>
<item> <item>

View File

@@ -72,6 +72,7 @@
body { body {
display: grid; display: grid;
background-color: var(--background-0); background-color: var(--background-0);
grid-template-rows: min-content auto;
// Adds a margin otherwise for some reason. // Adds a margin otherwise for some reason.
margin: 0; margin: 0;