aboutsummaryrefslogtreecommitdiff
path: root/html/main/projects.tmpl.html
blob: 18ad060c120aac4c0f9f549753536f07c3d79a9d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{{ 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 }}