Skip to content

Commit

Permalink
Implement stellar nursery
Browse files Browse the repository at this point in the history
To help new contributors discover tutorials they may be interested in contributing to
  • Loading branch information
hexylena committed Jan 29, 2024
1 parent bd624fa commit cd11bd6
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 0 deletions.
4 changes: 4 additions & 0 deletions _plugins/jekyll-topic-filter.rb
Original file line number Diff line number Diff line change
Expand Up @@ -963,6 +963,10 @@ def identify_contributors(materials, site)
def identify_funders(materials, site)
TopicFilter.identify_funders(materials, site)
end

def list_draft_materials(site)
TopicFilter.list_all_materials(site).select { |k, _v| k['draft'] }
end
end
end

Expand Down
35 changes: 35 additions & 0 deletions utils/stellar-nursery.md
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>

0 comments on commit cd11bd6

Please sign in to comment.