Skip to content

Commit

Permalink
Merge pull request #4378 from galaxyproject/wolf-octatonic
Browse files Browse the repository at this point in the history
Fix editorial board display
  • Loading branch information
nomadscientist authored Oct 5, 2023
2 parents cc075bd + 50a16d1 commit d22f65f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion _layouts/learning-pathway.html
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,10 @@ <h2 id="requirements">Requirements</h2>
<h3 id="st-{{ section.section | slugify }}">{{ section.section }}</h3>
<p>{{ section.description | markdownify }}</p>

{% if section.tutorials %}
{% assign material_list = site | convert_to_material_list: section.tutorials %}
{% include _includes/tutorial_list.html sub=material_list %}
{% endif %}
{% endfor %}
</section>

Expand All @@ -56,12 +58,14 @@ <h3 id="st-{{ section.section | slugify }}">{{ section.section }}</h3>
<!-- Maintained by -->
<h2 id="editorial-board">Editorial Board</h2>
<p>This material is reviewed by our Editorial Board:</p>
{% assign editorial_board = pathway.maintainers %}
{% assign editorial_board = pathway.editorial_board %}
{% include _includes/contributor-list.html contributors=editorial_board badge=true %}

{% if pathway.funding %}
<h2 id="funders">Funders</h2>
<p>This material was funded by:</p>
{% assign funders = pathway.funding | sorted %}
{% include _includes/contributor-list.html contributors=funders badge=true %}
{% endif %}

</section>

0 comments on commit d22f65f

Please sign in to comment.