aboutsummaryrefslogtreecommitdiff
path: root/html/main/projects.tmpl.html
blob: 034c9bf6f62110c92fcfddb7d5e6910135df7731 (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="postContent">
      <h2>Completed</h2>
{{ range .Contents }}
        <figure class="thumbnail">
          <a href="/projects/{{ .FileName }}">
            {{ .Image }}
            <figcaption>{{ .Title }}</figcaption>
          </a>
        </figure>
{{ end }}
    </section>
{{ end }}