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