Skip to content

Commit

Permalink
Fixing layout
Browse files Browse the repository at this point in the history
  • Loading branch information
gvwilson committed Feb 10, 2015
1 parent 64bb39a commit 3c4d0aa
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
11 changes: 7 additions & 4 deletions _layouts/roundindex.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,13 @@
<h1>{{ page.title }}</h1>
</div>
{% assign submissions = site.submissions | where:"round",page.title | sort: 'date' %}
<table class="table table-striped">
{% for submission in submissions reversed %}
<h3>
<a href="{{ submission.url | prepend: site.baseurl }}">{{ submission.title }}</a>
<small>Submitted by {{ submission.author }} on {{ submission.date | date: "%b %-d, %Y" }}</small>
</h3>
<tr>
<td><a href="{{ submission.url | prepend: site.baseurl }}">{{ submission.title }}</a></td>
<td>{{ submission.author }}</td>
<td>{{ submission.date | date: "%b %-d, %Y" }}</td>
</tr>
{% endfor %}
</table>
</div>
2 changes: 1 addition & 1 deletion _submissions/round-12/0/2015-02-05-about-burke-squires.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
date: 2014-02-05
date: 2015-02-05
round: Round 12
title: About R. Burke Squires
author: R. Burke Squires
Expand Down
File renamed without changes.

0 comments on commit 3c4d0aa

Please sign in to comment.