aboutsummaryrefslogtreecommitdiff
path: root/html/index.tmpl.html
blob: 582bc243cf16880c08bffe624dd4e6aec2ad8792 (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>
      <div>
        <div class="projects even-2-col-grid">
{{ range .Posts.Contents }}
          <a href="/projects/{{ .FileName }}" class="thumbnail">
            {{ .Image }}
            <span class="title">{{ .Title }}</span>
          </a>
{{ end }}
        </div>
      </div>
{{ end }}