Mirror of https://github.com/roostorg/playground
github.com/roostorg/playground
1---
2layout: default
3---
4
5<h1>{{ site.title }}</h1>
6<p>{{ site.description }}</p>
7<p>Projects on this page are not developed or endorsed by ROOST, and may not be intended for production use. Check each project’s documentation for details.</p>
8<ul id="projects">
9 {% assign projects = site.data.projects | sort: 'title' %}
10 {% for project in projects %}
11 <li>
12 <a href="{{ project.url }}" target="_blank">
13 <h2>{{ project.title }}</h2>
14 <p>{{ project.description }}</p>
15 {% for tag in project.tags %}
16 <span class="tag {{ tag }}">{{ tag }}</span>
17 {% endfor %}
18 </a>
19 </li>
20 {% endfor %}
21</ul>