aboutsummaryrefslogtreecommitdiff
path: root/templates/page/now.gohtml
diff options
context:
space:
mode:
authorWilliam Hergès <william@herges.fr>2025-09-07 15:22:18 +0200
committerWilliam Hergès <william@herges.fr>2025-09-07 15:22:18 +0200
commite2f739c9e19f57b72b599eaf5bfc10265e62ddb8 (patch)
tree5f70c95d68ada9d8292ceec6a06d38dffdce0aa9 /templates/page/now.gohtml
parente8da79df02b9045146e2a0cb9e035f14a68537c6 (diff)
feat(style): change tag to now
Diffstat (limited to 'templates/page/now.gohtml')
-rw-r--r--templates/page/now.gohtml19
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