forked from a11yproject/a11yproject.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
follow.html
35 lines (33 loc) · 1.06 KB
/
follow.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
---
layout: page
title: Who to follow
description: A list of people, companies, and meetup groups to follow in web standards and accessibility.
permalink: follow.html
---
<nav class="toc-wrap toc-long" aria-labelledby="toc_title">
<h2 id="toc_title" class="toc-title">Categories</h2>
<ul class="toc">
{% for category in site.data.follow %}
<li>
<a class="{{ category.section-id }}" href="#{{category.section-id}}">
{{ category.category }}
</a>
</li>
{% endfor %}
</ul>
</nav>
{% for category in site.data.follow %}
<section id="{{category.section-id}}" class="article-section resources-section" tabindex="-1">
<h2 class="article-section__title">{{ category.category }}</h2>
<ul class="article-section__content">
{% assign sorted_links = category.links | sort: 'name' %}
{% for link in sorted_links %}
<li>
<a href="{{ link.url }}" rel="external">
{{ link.name }} ({{link.username}})
</a>
</li>
{% endfor %}
</ul>
</section>
{% endfor %}