Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
index.html 542 B
{{ partial "header.html" . }}

<div class="header">
  <h1>{{ .Title }}</h1>
  <h2><a href="{{ .Site.Params.isite }}" target="_blank">{{ .Site.Params.institution }}</a></h2>
  <h3><a href="{{ .Site.Params.dsite }}" target="_blank">{{ .Site.Params.department }}</a></h3>
  <h4>{{ .Site.Params.description }}</h3>
</div>

<div class="content">
  {{ range ( .Paginate (where .Data.Pages "Type" "post")).Pages }}
    {{ .Render "summary"}}
  {{ end }}

  {{ partial "pagination.html" . }}

</div>

{{ partial "footer.html" . }}