aboutsummaryrefslogtreecommitdiff
path: root/html/main/index.tmpl.html
blob: 9abcd59ff3255a92419eddc9af4a729ef1116760 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{{ define "title" }}Home{{end}}
{{ define "description" }}Homepage{{end}}
{{ define "keywords" }}home{{end}}

{{ define "main" }}
      <h1>Design Projects</h1>
      <section class="projects even-2-col-grid">
{{ range .Posts.Contents }}
        <a href="/projects/{{ .FileName }}" class="thumbnail">
          <div class="img-zoom">
            {{ .Image }}
          </div>
          <p>{{ .Title }}</p>
        </a>
{{ end }}
      </section>
{{ end }}