{{- define "title" -}}
  {{.Title}}
{{- end -}}

{{- define "main" -}}
  <div class='container'>
    <div class='section is-small'>
      <h1
        class='title'
        title='{{.Title}}'
        aria-label='{{.Title}}'
      >
        {{- .Title -}}
      </h1><!-- title -->

      {{- if .Params.repo -}}
        <h3 class='subtitle'>
          <a
            href='{{- .Params.repo -}}'
            title='Go to {{.Slug}} Git repository.'
            aria-label='Go to {{.Slug}} Git repository'
            rel='noopener'
          >
            Git Repository
          </a>
        </h3><!-- subtitle -->
      {{- end -}}

      <div class='content'>
        {{- .Content -}}
      </div><!-- content -->
    </div><!-- section -->
  </div><!-- container -->
{{- end -}}