diff options
author | thing1 <thing1@seacrossedlovers.xyz> | 2025-02-01 16:49:25 +0000 |
---|---|---|
committer | thing1 <thing1@seacrossedlovers.xyz> | 2025-02-01 16:49:25 +0000 |
commit | 2e2685e291eca31a7e3ba1805f93445fec19ee6d (patch) | |
tree | 0ff2afb0475af9fde69ccdaa0409ba9316db9bee | |
parent | 0c1a90302025de864524120a0de0753fcb0b5d0a (diff) |
made it so the rss link is at the top of pages generated
-rwxr-xr-x | blogger.sh | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -11,6 +11,7 @@ rm -rf outfile/*.html echo """ <h1 id=blogtitle>Thing1's blogs!</h1> <link rel=\"stylesheet\" href=\"style.css\"> +<a id=bloglink href=rss.xml>rss!<a> <br> <br> <br> @@ -26,6 +27,7 @@ for i in $blogs; do <body> <h1 id=blogtitle>$out</h1> <a id=bloglink href=index.html>Home<a> +<a id=bloglink href=rss.xml>rss!<a> """ > $outfile/$out.html cat $i | ./blogtohtml >> $outfile/$out.html |