Mirror of https://github.com/roostorg/playground github.com/roostorg/playground
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 21 lines 650 B view raw
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>