test: syndicate to mastodon and bluesky via brid.gy
This commit is contained in:
parent
85fdf3d3b1
commit
2ce341a3b0
7 changed files with 24 additions and 7 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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 }}
|
||||
|
|
|
@ -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>
|
||||
|
|
9
_posts/2025-01-28-syndication-test.md
Normal file
9
_posts/2025-01-28-syndication-test.md
Normal file
|
@ -0,0 +1,9 @@
|
|||
---
|
||||
layout: post
|
||||
title: syndication test
|
||||
date: 2025-01-28 17:08 -0500
|
||||
syndicate:
|
||||
- mastodon
|
||||
- bluesky
|
||||
---
|
||||
This is a test!
|
6
index.md
6
index.md
|
@ -3,10 +3,14 @@ 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 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>
|
||||
|
|
7
posts.md
7
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="h-entry">
|
||||
<a class="u-url p-name" href="{{ post.url }}">{{ post.title | smartify }}</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
|
|
Loading…
Reference in a new issue