Any interest in Ghost tips/tricks?

I’ve learned quite a lot about how to work with Ghost.org while setting up two moderately complex sites.
Stuff like “how to make a page that’s a collection of tags and articles”, “how to add support for mastodon/bluesky”, “how to add a set of other posts with similar tags”, etc.

Is this something anyone would like to see?

I’ll add the most substantial snippet that I’ve come to rely on here, this snippet would be added to your .hbs (handlebar) file in order to add a browser of other posts with a specific static tag:

{{#get 'tags' limit='all' include='count.posts' filter='slug:[mytag]' }}
    {{#foreach tags}}
        <header class="tag-header">
            <h2><a href="{{url}}">{{name}}</a></h2>
            {{#if description}}
                <p class="content">{{description}}</p>
            {{else}}
                <p>A collection of {{plural ../pagination.total empty='posts' singular='% post' plural='% posts'}}</p>
            {{/if}}
            {{#if feature_image}}
                <a href="{{url}}" class="image main"><img src="{{img_url feature_image}}" alt="{{title}}" /></a>
            {{/if}}
        </header>

        {{!-- Posts --}}
        {{#get 'posts' filter='primary_tag:mytag' }}
            <section>
                <section class="posts">
                {{#foreach posts limit='2'}}
                    <article>
                        {{#if feature_image}}
                            <a href="{{url}}" class="image fit"><img src="{{img_url feature_image}}" alt="{{title}}" /></a>
                        {{/if}}
                        <h3><a href="{{url}}">{{title}}</a></h3>
                        <p>{{excerpt words="33"}}</p>
                        <ul class="actions special">
                            <li><a href="{{url}}" class="button">Read More</a></li>
                        </ul>
                    </article>
                {{/foreach}}
                
                </section>
            </section>
            <footer class="gh-topic-footer">
                {{#match pagination.total ">" 1}}
                    <a class="gh-topic-link" href="{{@site.url}}/tag/mytag">Show more {{> "icons/arrow"}}</a>
                {{/match}}
            </footer>
        {{/get}}
    {{/foreach}}
{{/get}}