Skip to content
Snippets Groups Projects
Commit 92083024 authored by Greg Wilson's avatar Greg Wilson
Browse files

Displaying all key points

parent e5010519
Branches
Tags
No related merge requests found
{% comment %}
Display key points of all episodes for reference.
{% endcomment %}
<h2>Key Points</h2>
<table class="table table-striped">
{% for episode in site.episodes %}
<tr>
<td class="col-md-3">
<a href="{{ site.root }}/{{ episode.url }}">{{ episode.title }}</a>
</td>
<td class="col-md-9">
<ul>
{% for keypoint in episode.keypoints %}
<li>{{ keypoint }}</li>
{% endfor %}
</ul>
</td>
</tr>
{% endfor %}
</table>
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment