forked from devcontainers/devcontainers.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
collections.html
29 lines (26 loc) · 1.23 KB
/
collections.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
---
title: Collections
layout: table
sectionid: collection-index
---
<h1 style="margin-left: auto;margin-right: auto;">Collections</h1>
<p style="margin-left: auto;margin-right: auto;">
This list below contains pointers to official and community-contributed Dev Container assets, including Features and Templates.
Collections on this list are continuously crawled for liveness, and can be presented in UX of Dev Container-supporting tools
(i.e. it will be presented in the GitHub Codespaces and VS Code Dev Containers UX).
</p>
<p>
To add your own collection to this list, please create a PR editing <a href="https://github.com/devcontainers/devcontainers.github.io/blob/gh-pages/_data/collection-index.yml">this yaml file</a>.
</p>
<tr>
<td class="tg-0lax"><b>Name</b></b></td>
<td class="tg-0lax"><b>Maintainer</b></td>
<td class="tg-0lax"><b>Repository</b></td>
</tr>
{% for c in site.data.collection-index %}
<tr>
<td class="tg-0lax">{{ c.name }}</td>
<td class="tg-0lax"><a rel="nofollow" href="{{ c.contact | strip_html }}">{{ c.maintainer | strip_html }}</a></td>
<td class="tg-0lax"><a rel="nofollow" href="{{ c.repository | strip_html }}">{{ c.repository | strip_html }}</a></td>
</tr>
{% endfor %}