Switching to GitHub-defined variables
[rnaseq-cwl-training.git] / _includes / all_keypoints.html
1 {% comment %}
2   Display key points of all episodes for reference.
3 {% endcomment %}
4 <h2>Key Points</h2>
5 <table class="table table-striped">
6 {% for episode in site.episodes %}
7   {% unless episode.break %}
8     <tr>
9       <td class="col-md-3">
10         <a href="{{ site.github.url }}{{ episode.url }}">{{ episode.title }}</a>
11       </td>
12       <td class="col-md-9">
13         <ul>
14         {% for keypoint in episode.keypoints %}
15         <li>{{ keypoint|markdownify }}</li>
16         {% endfor %}
17         </ul>
18       </td>
19     </tr>
20   {% endunless %}
21 {% endfor %}
22 </table>