diff --git a/Gemfile.lock b/Gemfile.lock
index 7adc9e2..e534869 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -84,7 +84,6 @@ GEM
     pathutil (0.16.2)
       forwardable-extended (~> 2.6)
     public_suffix (6.0.1)
-    racc (1.8.1)
     rake (13.2.1)
     rb-fsevent (0.11.2)
     rb-inotify (0.11.1)
@@ -129,7 +128,6 @@ GEM
       google-protobuf (~> 4.29)
     terminal-table (3.0.2)
       unicode-display_width (>= 1.1.1, < 3)
-    tomlrb (2.0.3)
     unicode-display_width (2.6.0)
     webrick (1.9.1)
 
@@ -163,8 +161,6 @@ DEPENDENCIES
   jekyll
   jekyll-compose
   logger
-  racc
-  tomlrb
   webrick
 
 BUNDLED WITH
diff --git a/_config.yml b/_config.yml
index 05732d6..24baf41 100644
--- a/_config.yml
+++ b/_config.yml
@@ -1,6 +1,7 @@
 url: "https://sloane.sh" # the base hostname & protocol for your site, e.g. http://example.com
 baseurl: "" # the subpath of your site, e.g. /blog
 title: "sloane.sh" # the name of your site, e.g. ACME Corp.
+permalink: /:categories/:year/:month/:day/:title/index:output_ext
 plugins:
   - jekyll-compose
 
diff --git a/_layouts/default.html b/_layouts/default.html
index c56b1da..e5d7a3c 100644
--- a/_layouts/default.html
+++ b/_layouts/default.html
@@ -11,6 +11,7 @@
       {% endif %}
     </title>
     <link rel="stylesheet" href="{{ "/assets/css/main.css" | relative_url }}">
+    <link rel="feed" type="text/html" href="/posts/">
   </head>
   <body>
     {{ content }}
diff --git a/_layouts/post.html b/_layouts/post.html
index c83cbdf..963fed3 100644
--- a/_layouts/post.html
+++ b/_layouts/post.html
@@ -39,5 +39,8 @@ layout: default
       <!--   </ul> -->
       <!-- </dd> -->
     </dl>
+    {% for service in page.syndicate %}
+      <a href="https://brid.gy/publish/{{ service }}"></a>
+    {% endfor %}
   </footer>
 </article>
diff --git a/_posts/2025-01-28-syndication-test.md b/_posts/2025-01-28-syndication-test.md
new file mode 100644
index 0000000..60dcbb5
--- /dev/null
+++ b/_posts/2025-01-28-syndication-test.md
@@ -0,0 +1,9 @@
+---
+layout: post
+title: syndication test
+date: 2025-01-28 17:08 -0500
+syndicate:
+- mastodon
+- bluesky
+---
+This is a test!
diff --git a/index.md b/index.md
index 7c65fcb..fdbc64c 100644
--- a/index.md
+++ b/index.md
@@ -3,10 +3,13 @@ layout: default
 title: "sloane.sh"
 ---
 
-# Hi, I'm <a class="h-card p-name u-url" href="https://sloane.sh">Sloane!</a>
+# Hi, I'm <a class="h-card p-name u-url" href="https://sloane.sh">Sloane</a>!
 
 I'm a professional software engineer and an amateur musician, photographer, wife, chef, and pet mom.
 
 ## [My Tools](/uses/)
 
 If you're interested in the tools I use you can  check out my [usesthis.com](https://usesthis.com) style self-interview.
+
+<a rel="me" href="https://toots.sloane.sh/@sloane"></a>
+<a rel="me" href="https://bsky.app/profile/sloane.sh"></a>
diff --git a/posts.md b/posts.md
index 0afb6a7..3888954 100644
--- a/posts.md
+++ b/posts.md
@@ -1,10 +1,13 @@
 ---
 layout: default
 title: posts
+permalink: /posts/
 ---
 
-<ul>
+<ul class="h-feed">
   {% for post in site.posts %}
-    <li><a href="{{ post.url }}">{{ post.title }}</a></li>
+    <li class="">
+      <a class="u-url p-name" href="{{ post.url }}">{{ post.title | smartify }}</a>
+    </li>
   {% endfor %}
 </ul>