A curated list of libraries & SDKs for the Bluesky API and AT Protocol
at 3e42ed2aedd300a487aad98d2b2fafaf3faf8d36 27 lines 602 B view raw
1--- 2--- 3 4<nav> 5 {% for projects in site.data.projects %} 6 {% assign key = projects[0] %} 7 {% assign data = projects[1] %} 8 9 {% if key != 'other' %} 10 <a href="#{{ key }}">{{ data.name }}</a> | 11 {% endif %} 12 {% endfor %} 13 14 <a href="#other">Other</a> 15</nav> 16 17{% for projects in site.data.projects %} 18 {% assign key = projects[0] %} 19 {% assign data = projects[1] %} 20 21 {% if key != 'other' %} 22 {% include language_section.html key=key data=data %} 23 {% endif %} 24{% endfor %} 25 26{% assign other = site.data.projects.other %} 27{% include language_section.html key='other' data=other %}