pidgin/nest

Merged in alanhoskins/nest/fix-plugin-search (pull request #82)

Fixed issue where search term wasn't found in info

Approved-by: Gary Kramlich
{{ range sort .Site.Data.gsoc "year" "desc" }}
<h3 id="gsoc-{{ .year }}">{{ .year }}</h3>
<table>
<thead>
<th>{{ T "Project" }}</th>
<th>{{ T "Student" }}</th>
<th>{{ T "Mentor" }}</th>
<th>{{ T "Status" }}</th>
</thead>
<tbody>
{{ range .participants }}
<tr>
<td>{{ .project }}</td>
<td>{{ .student }}</td>
<td>{{ .mentor }}</td>
<td>{{ .status | markdownify }}</td>
</tr>
{{ end }}
</tbody>
</table>
{{ end }}