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

Don't show key points for breaks

parent 92083024
Branches
Tags
No related merge requests found
......@@ -4,17 +4,19 @@
<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>
{% unless episode.break %}
<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>
{% endunless %}
{% 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