Skip to content

Commit

Permalink
Merge pull request #4683 from galaxyproject/cow-kardashev
Browse files Browse the repository at this point in the history
Implement stellar nursery
  • Loading branch information
shiltemann authored Feb 12, 2024
2 parents ba160f8 + cd11bd6 commit b1ab835
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 @@ -976,6 +976,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 b1ab835

Please sign in to comment.