Skip to content

Commit

Permalink
fixed 301 assn index
Browse files Browse the repository at this point in the history
  • Loading branch information
dsanson committed Oct 5, 2010
1 parent bdad442 commit 7fbe2b9
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion 301f2010/assignments/index.markdown
Expand Up @@ -13,4 +13,20 @@ section: assignments
{% endif %}
{% endfor %}
</ul>
</article>
</article>

{% for post in site.categories.301f2010 %}
{% if post.categories contains "assignments" %}
<article>
<h1><a class="title" href="{{ post.url }}">{{ post.title }}</a> {% if post.comments %}<span class="comments">(<a href="{{ post.url }}#disqus_thread">View Comments</a>)</span>{% endif %}
</h1>
{% if post.excerpt != null %}
{{ post.excerpt }}
<a href="{{ post.url }}">→</a>
{% else %}
{{ post.content }}
{% endif %}
<hr>
</article>
{% endif %}
{% endfor %}

0 comments on commit 7fbe2b9

Please sign in to comment.