blob: 7d07999bbdce12ca9e762b43b873d0ef398b02e3 [file]
{{ define "main" }}
<div class="container mb-4">
<p class="text-center">
{{ .Content }}
</p>
<table class="table-dark" id="sessions-table" data-toggle="table" data-search="true" data-search-align="left" data-sortable="true">
<thead>
<tr>
<th data-field="track" data-sortable="true">Track</th>
<th data-field="title" data-sortable="true">Title</th>
<th data-field="speaker" data-sortable="true">Speaker(s)</th>
</tr>
</thead>
<tbody>
{{ range .Data.Pages.ByTitle }}
<tr>
<td>{{ range .Params.tracks }}<a href="/tracks/{{anchorize .}}">{{.}}</a>{{ end }}</td>
<td><a href="{{.Permalink}}">{{ .Params.title }}</a></td>
<td>{{ with .Params.speakers }}{{ delimit . ", " " & " }}{{ end }}</td>
</tr>
{{ end }}
</tbody>
</table>
</div>
{{ end }}