yagit

Yet another static site generator for Git 🙀️

Commit
cf4cd99607cbdf50df13455085f6283b42e84b88
Parent
87c47414954c3830e5ebb81f40cd65c5658bf68f
Author
Pablo <pablo-pie@riseup.net>
Date

Minor tweaks to the HTML

Diffstats

1 files changed, 2 insertions, 2 deletions

Status Name Changes Insertions Deletions
Modified src/main.rs 2 files changed 2 2
diff --git a/src/main.rs b/src/main.rs
@@ -1347,7 +1347,7 @@ fn render_header(f: &mut File, title: PageTitle<'_>) -> io::Result<()> {
 
   match title {
     PageTitle::Index => {
-      writeln!(f, "<title>Repositories</title>")?;
+      writeln!(f, "<title>personal projects</title>")?;
     }
     PageTitle::Summary { repo_name }=> {
       writeln!(f, "<title>{repo}</title>", repo = Escaped(repo_name))?;
@@ -1388,7 +1388,7 @@ fn render_header(f: &mut File, title: PageTitle<'_>) -> io::Result<()> {
 
 fn render_footer(f: &mut File) -> io::Result<()> {
   writeln!(f, "<footer>")?;
-  writeln!(f, "made with ❤️ by <a rel=\"author\" href=\"https://pablopie.xyz/\">@pablo</a>")?;
+  writeln!(f, "made with 💛 by <a rel=\"author\" href=\"https://pablopie.xyz/\">@pablo</a>")?;
   writeln!(f, "</footer>")
 }