diff options
Diffstat (limited to 'html/index.tmpl.html')
| -rw-r--r-- | html/index.tmpl.html | 17 | 
1 files changed, 17 insertions, 0 deletions
| diff --git a/html/index.tmpl.html b/html/index.tmpl.html new file mode 100644 index 0000000..582bc24 --- /dev/null +++ b/html/index.tmpl.html @@ -0,0 +1,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 }}
\ No newline at end of file | 
