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

{{ define "main" }}
      <h1>Design Projects</h1>
      <div>
        <div class="home-grid">
{{ range .Posts.Contents }}
          <a href="/projects/{{ .FileName }}" class="thumbnail">
            {{ .Image }}
            <div class="title-bg">
              <span class="title">{{ .Title }}</span>
            </div>
          </a>
{{ end }}
        </div>
      </div>
{{ end }}