forked from galaxyproject/training-material
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
To help new contributors discover tutorials they may be interested in contributing to
- Loading branch information
Showing
2 changed files
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
--- | ||
layout: page | ||
title: GTN Stellar Nursery | ||
--- | ||
|
||
Welcome to the Stellar Nursery where brand new baby tutorials and other stellar objects are being born every day. Some of these would like to grow up to be full fledged Galactic Tutorials, no longer the *dark matter* hiding in our Galaxy. | ||
|
||
## You can help! | ||
|
||
Are you a new contributor who wants to learn more about how the GTN works? Are you looking for a Hacktoberfest contribution? | ||
|
||
Some of these tutorials might be good ones to work on; please reach out to us and we can suggest one for you, and guide you through the changes that are required to bring it up to GTN standards. | ||
|
||
## Dark Matter | ||
|
||
{% assign draft_tutorials = site | list_draft_materials %} | ||
|
||
<table> | ||
<thead> | ||
<tr> | ||
<th>Topic</th> | ||
<th>Title</th> | ||
<th>Links</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
{% for tutorial in draft_tutorials %} | ||
<tr> | ||
<td>{{ tutorial.topic_name }}</td> | ||
<td>{{ tutorial.title }}</td> | ||
<td><a href="{{ site.baseurl }}{{ tutorial.url }}">{{ tutorial.url }}</a></td> | ||
</tr> | ||
{% endfor %} | ||
</tbody> | ||
</table> |