test: syndicate to mastodon and bluesky via brid.gy

This commit is contained in:
sloane 2025-01-28 17:16:59 -05:00
parent 85fdf3d3b1
commit 2ce341a3b0
Signed by: sloanelybutsurely
SSH key fingerprint: SHA256:8SBnwhl+RY3oEyQxy1a9wByPzxWM0x+/Ejc+sIlY5qQ
7 changed files with 24 additions and 7 deletions

View file

@ -84,7 +84,6 @@ GEM
pathutil (0.16.2) pathutil (0.16.2)
forwardable-extended (~> 2.6) forwardable-extended (~> 2.6)
public_suffix (6.0.1) public_suffix (6.0.1)
racc (1.8.1)
rake (13.2.1) rake (13.2.1)
rb-fsevent (0.11.2) rb-fsevent (0.11.2)
rb-inotify (0.11.1) rb-inotify (0.11.1)
@ -129,7 +128,6 @@ GEM
google-protobuf (~> 4.29) google-protobuf (~> 4.29)
terminal-table (3.0.2) terminal-table (3.0.2)
unicode-display_width (>= 1.1.1, < 3) unicode-display_width (>= 1.1.1, < 3)
tomlrb (2.0.3)
unicode-display_width (2.6.0) unicode-display_width (2.6.0)
webrick (1.9.1) webrick (1.9.1)
@ -163,8 +161,6 @@ DEPENDENCIES
jekyll jekyll
jekyll-compose jekyll-compose
logger logger
racc
tomlrb
webrick webrick
BUNDLED WITH BUNDLED WITH

View file

@ -1,6 +1,7 @@
url: "https://sloane.sh" # the base hostname & protocol for your site, e.g. http://example.com 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 baseurl: "" # the subpath of your site, e.g. /blog
title: "sloane.sh" # the name of your site, e.g. ACME Corp. title: "sloane.sh" # the name of your site, e.g. ACME Corp.
permalink: /:categories/:year/:month/:day/:title/index:output_ext
plugins: plugins:
- jekyll-compose - jekyll-compose

View file

@ -11,6 +11,7 @@
{% endif %} {% endif %}
</title> </title>
<link rel="stylesheet" href="{{ "/assets/css/main.css" | relative_url }}"> <link rel="stylesheet" href="{{ "/assets/css/main.css" | relative_url }}">
<link rel="feed" type="text/html" href="/posts/">
</head> </head>
<body> <body>
{{ content }} {{ content }}

View file

@ -39,5 +39,8 @@ layout: default
<!-- </ul> --> <!-- </ul> -->
<!-- </dd> --> <!-- </dd> -->
</dl> </dl>
{% for service in page.syndicate %}
<a href="https://brid.gy/publish/{{ service }}"></a>
{% endfor %}
</footer> </footer>
</article> </article>

View file

@ -0,0 +1,9 @@
---
layout: post
title: syndication test
date: 2025-01-28 17:08 -0500
syndicate:
- mastodon
- bluesky
---
This is a test!

View file

@ -3,10 +3,14 @@ layout: default
title: "sloane.sh" 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. I'm a professional software engineer and an amateur musician, photographer, wife, chef, and pet mom.
## [My Tools](/uses/) ## [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. 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 authn" href="https://github.com/sloanelybutsurely"></a>
<a rel="me" href="https://toots.sloane.sh/@sloane"></a>
<a rel="me" href="https://bsky.app/profile/sloane.sh"></a>

View file

@ -1,10 +1,13 @@
--- ---
layout: default layout: default
title: posts title: posts
permalink: /posts/
--- ---
<ul> <ul class="h-feed">
{% for post in site.posts %} {% for post in site.posts %}
<li><a href="{{ post.url }}">{{ post.title }}</a></li> <li class="h-entry">
<a class="u-url p-name" href="{{ post.url }}">{{ post.title | smartify }}</a>
</li>
{% endfor %} {% endfor %}
</ul> </ul>