A curated list of libraries & SDKs for the Bluesky API and AT Protocol
at master 44 lines 1.0 kB view raw
1--- 2--- 3 4{% assign tags = "" | split: "" %} 5 6<nav> 7 {% for projects in site.data.projects %} 8 {% assign key = projects[0] %} 9 {% assign data = projects[1] %} 10 11 {% for repo in data.repos %} 12 {% assign repo_tags = repo.tags | join: ',' | split: ',' %} 13 {% assign tags = tags | concat: repo_tags %} 14 {% endfor %} 15 16 {% if key != 'other' %} 17 <a href="#{{ key }}">{{ data.name }}</a> | 18 {% endif %} 19 {% endfor %} 20 21 <a href="#other">Other</a> 22</nav> 23 24{% assign tags = tags | uniq | sort %} 25 26<div class="nav-separator"></div> 27 28<p class="tags" id="tag_cloud"> 29 {% for tag in tags %} 30 <span data-tag="{{ tag }}">{{ tag }}</span> 31 {% endfor %} 32</p> 33 34{% for projects in site.data.projects %} 35 {% assign key = projects[0] %} 36 {% assign data = projects[1] %} 37 38 {% if key != 'other' %} 39 {% include language_section.html key=key data=data %} 40 {% endif %} 41{% endfor %} 42 43{% assign other = site.data.projects.other %} 44{% include language_section.html key='other' data=other %}