diff options
Diffstat (limited to 'templates/page/now.gohtml')
| -rw-r--r-- | templates/page/now.gohtml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/templates/page/now.gohtml b/templates/page/now.gohtml new file mode 100644 index 0000000..776e87a --- /dev/null +++ b/templates/page/now.gohtml @@ -0,0 +1,19 @@ +{{define "body"}} + <main style="{{ .GetBackground }}"> + <div class="header"> + <h1 class="header__title">Now</h1> + <nav> + <a href="/">Home</a> + </nav> + </div> + <div class="tags" style="{{ .Color.GetTagColor }}"> + {{ range $tag := .Person.Tags }} + <div class="tag" data-href="{{ .Link }}" title="{{ .Link }}"> + <h4>{{ .Name }}</h4> + <p>{{ .Description }}</p> + <p><a href="">Hello</a></p> + </div> + {{ end }} + </div> + </main> +{{end}}
\ No newline at end of file |
