diff options
author | Alex Scerba <alex@scerba.org> | 2024-09-27 18:56:29 -0400 |
---|---|---|
committer | Alex Scerba <alex@scerba.org> | 2024-09-27 18:56:29 -0400 |
commit | 2782bafcfdb69ef7b69a51a717a6bd35095e9369 (patch) | |
tree | 32d69f68fe2dbc6b9cc5a5ac8ff970d79f348156 /html/index.tmpl.html | |
parent | 1208c2e7e7e79cfe122f8d5f38160a0611cc9dfe (diff) |
Add base files
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 |