{# Bluesky Thread Component #} {# Fetches and displays replies from the syndicated Bluesky post via the AT Protocol public API #} {# Only renders when the post has a bsky.app syndication URL #} {% set bskySyndUrl = "" %} {% if syndication %} {% for url in syndication %} {% if "bsky.app" in url %} {% set bskySyndUrl = url %} {% endif %} {% endfor %} {% endif %} {% if bskySyndUrl %}