aboutsummaryrefslogtreecommitdiff
path: root/html/main/projects.tmpl.html
blob: 9afc81db7888b76ceecfd27a0795146750ccd356 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{{ define "title" }}Projects{{end}}
{{ define "description" }}Porfolio projects.{{end}}
{{ define "keywords" }}projects{{end}}
{{ define "canonical" }}/projects{{end}}

{{ define "main" }}
    <h1>alexscerba.com<wbr>/projects</h1>

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