hugohm/layouts/asistencia/section.html

43 lines
1.2 KiB
HTML
Raw Normal View History

{{ define "main" }}
{{ .Content }}
<table>
<thead>
<tr>
<th>Quién</th>
<th>Entrada</th>
<th>Salida</th>
<th>Tipo de comida</th>
<th>Talla camiseta</th>
<th>Material/Otros</th>
<th>Dormir</th>
<th>Comer</th>
<th>Necesidades Especiales</th>
</tr>
</thead>
<tbody>
{{ range where .Pages "Params.type" "asistencia" }}
<tr>
<td>{{ .Title }}</td>
<td>{{ .Params.entrada }}</td>
<td>{{ .Params.salida }}</td>
<td>{{ .Params.dieta }}</td>
<td>{{ .Params.camiseta }}</td>
<td>{{ .Params.material }}</td>
<td>{{ .Params.dormir }}</td>
<td>{{ .Params.comer }}</td>
<td>{{ .Params.necesidades }}</td>
</tr>
{{ end }}
</tbody>
</table>
{{ end }}
{{ define "sidebar_menu" }}
<ul>
{{ range .Parent.Pages }}
<li><a href="{{ .Permalink }}">{{.Title}}</a></li>
{{ end }}
</ul>
{{ end}}