jason/nest

66a0559188fb
Removes absoloute file path in migrate tracker
{{ range sort .Site.Data.gsoc "year" "desc" }}
<h3 id="gsoc-{{.year}}">{{.year}}</h3>
<table>
<thead>
<th>Project</th>
<th>Student</th>
<th>Mentor</th>
<th>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 }}