-
Notifications
You must be signed in to change notification settings - Fork 25
/
index.html
32 lines (32 loc) · 1.31 KB
/
index.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
---
layout: default
redirect_from: /components/
title: A collection of accessible, modern front-end components.
description: Frend components are modest and dependency-free. They are built with web standards as a priority and aim to avoid assumptions about tooling or environment.
---
<div class="wrapper">
<div class="content-header">
<h1 class="text-large">Frend</h1>
<p>A collection of accessible, modern front-end components.</p>
<p>Frend components are modest and dependency-free. They are built with web standards as a priority and aim to avoid assumptions about tooling or environment. Care has been taken to make sure each component is compliant, keyboard navigable and properly interpreted by assistive technologies.</p>
<p><a href="/about">Read more about Frend</a></p>
</div>
<h2 class="visually-hidden">Components</h2>
<ul class="list-components">
{% assign components = site.components | sort: 'title' %}
{% for component in components %}
{% if component.alpha != true %}
<li class="list-components__list-item">
{% include listed-component.html %}
</li>
{% endif %}
{% endfor %}
<li class="list-components__list-item list-components__list-item--alpha">
<article>
<h3 class="text-medium">
Dropdown Navigation — Coming soon
</h3>
</article>
</li>
</ul>
</div>