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

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

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