From 9076095d7edc56ea44dcc66c1844659a156708e9 Mon Sep 17 00:00:00 2001 From: Rose Hogenson Date: Tue, 18 Aug 2026 17:00:21 -0700 Subject: Add Met Art page --- templates/mart/girl.html.template | 14 ++++++++++++++ templates/mart/index.html.template | 14 ++++++++++++++ templates/mart/set.html.template | 13 +++++++++++++ 3 files changed, 41 insertions(+) create mode 100644 templates/mart/girl.html.template create mode 100644 templates/mart/index.html.template create mode 100644 templates/mart/set.html.template (limited to 'templates/mart') diff --git a/templates/mart/girl.html.template b/templates/mart/girl.html.template new file mode 100644 index 0000000..a4ffce3 --- /dev/null +++ b/templates/mart/girl.html.template @@ -0,0 +1,14 @@ +{{- define "head"}} + {{.Name}} +{{- end}} + +{{- define "body"}} + {{- range .Sets}} +
+ + + +
{{.Name}}
+
+ {{- end}} +{{- end}} diff --git a/templates/mart/index.html.template b/templates/mart/index.html.template new file mode 100644 index 0000000..db52057 --- /dev/null +++ b/templates/mart/index.html.template @@ -0,0 +1,14 @@ +{{- define "head"}} + Met Art Babes +{{- end}} + +{{- define "body"}} + {{- range .Girls}} +
+ + + +
{{.Name}}
+
+ {{- end}} +{{- end}} diff --git a/templates/mart/set.html.template b/templates/mart/set.html.template new file mode 100644 index 0000000..9af31d1 --- /dev/null +++ b/templates/mart/set.html.template @@ -0,0 +1,13 @@ +{{- define "head"}} + {{.Name}} +{{- end}} + +{{- define "body"}} +
+ {{- range .Photos}} +
+ +
+ {{- end}} +
+{{- end}} -- cgit v1.3.1