diff --git a/src/blog.rs b/src/blog.rs
index 5888920b303c8f88e2c06760b3942dcd79fe4973..c7c14aecc55794dd1257a5c1fc5ab7b002cb9ae7 100644
--- a/src/blog.rs
+++ b/src/blog.rs
@@ -36,7 +36,7 @@ impl Blog {
         self.posts.reverse();
 
         let mut content =
-            r#"<div class="centered"><h1>Stephen's Site</h1>Rewritten in Rust!</div><h2>Recent Posts</h2><table>"#
+            r#"<div class="centered"><h1>Stephen's Site</h1></div>Welcome to my humble corner of the Internet! Occasionally I will do something kind of interesting and post about it here. Bear with me - I'm a developer, not a writer, so I'm bad at keeping this place up to date! For a more complete list of my work, please check out my <a href="https://gitlab.scd31.com/stephen">Git repository</a>.<h2>Recent Posts</h2><table>"#
                 .to_string();
 
         for post in &self.posts {