{{ define "title" }}Projects{{end}}
{{ define "description" }}Porfolio projects.{{end}}
{{ define "keywords" }}projects{{end}}
{{ define "canonical" }}/projects{{end}}

{{ define "main" }}
    <h1>Projects</h1>

    <section class="postBackground">
      <div class="projectList">
        <h2>Completed</h2>
{{ range .Posts.Contents }}
        <figure class="thumbnail">
          <a href="/projects/{{ .FileName }}">
            {{ .Image }}
            <figcaption>{{ .Title }}</figcaption>
          </a>
        </figure>
{{ end }}
      </div>
    </section>
{{ end }}