From fc63adf55849f748a37cef4c425a19a1c0f0e76e Mon Sep 17 00:00:00 2001 From: hanemile Date: Sun, 19 Jul 2020 01:56:09 +0200 Subject: initial commit --- hosted/tmpl/index.html | 31 +++++++++++++++ hosted/tmpl/propose.html | 86 ++++++++++++++++++++++++++++++++++++++++++ hosted/tmpl/singleTalk.html | 39 +++++++++++++++++++ hosted/tmpl/stylesheets.html | 4 ++ hosted/tmpl/upcoming.html | 31 +++++++++++++++ hosted/tmpl/upcomingTalks.html | 41 ++++++++++++++++++++ 6 files changed, 232 insertions(+) create mode 100644 hosted/tmpl/index.html create mode 100644 hosted/tmpl/propose.html create mode 100644 hosted/tmpl/singleTalk.html create mode 100644 hosted/tmpl/stylesheets.html create mode 100644 hosted/tmpl/upcoming.html create mode 100644 hosted/tmpl/upcomingTalks.html (limited to 'hosted/tmpl') diff --git a/hosted/tmpl/index.html b/hosted/tmpl/index.html new file mode 100644 index 0000000..124271a --- /dev/null +++ b/hosted/tmpl/index.html @@ -0,0 +1,31 @@ +{{define "index"}} + + + + + + + + {{ template "stylesheets" . }} + Freitagsfoo + + + +
+ + + + {{ template "upcomingTalks" . }} + +
+ + + +{{end}} \ No newline at end of file diff --git a/hosted/tmpl/propose.html b/hosted/tmpl/propose.html new file mode 100644 index 0000000..a76c830 --- /dev/null +++ b/hosted/tmpl/propose.html @@ -0,0 +1,86 @@ +{{define "propose"}} + + + + + + + + {{ template "stylesheets" . }} + Freitagsfoo + + + +
+ +
+
+

+ Freitagsfoo! +

+

Please enter the Details for your talk below:

+
+
+ +
+
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+ +
+
+ + + +
+
+
+ +
+
+
+ +
+
+
+
+ + +
+ + + +{{end}} \ No newline at end of file diff --git a/hosted/tmpl/singleTalk.html b/hosted/tmpl/singleTalk.html new file mode 100644 index 0000000..01ee15d --- /dev/null +++ b/hosted/tmpl/singleTalk.html @@ -0,0 +1,39 @@ +{{define "singleTalk"}} + + + + + + + + {{ template "stylesheets" . }} + Freitagsfoo + + + +
+ +
+
+

+ Freitagsfoo! +

+
+
+ +
+

{{ .talk.Title }}

+ + +

{{ .talk.Description }}

+
+ + +
+ + + +{{end}} \ No newline at end of file diff --git a/hosted/tmpl/stylesheets.html b/hosted/tmpl/stylesheets.html new file mode 100644 index 0000000..791d54c --- /dev/null +++ b/hosted/tmpl/stylesheets.html @@ -0,0 +1,4 @@ +{{ define "stylesheets" }} + + +{{ end }} \ No newline at end of file diff --git a/hosted/tmpl/upcoming.html b/hosted/tmpl/upcoming.html new file mode 100644 index 0000000..3d6e828 --- /dev/null +++ b/hosted/tmpl/upcoming.html @@ -0,0 +1,31 @@ +{{define "upcoming"}} + + + + + + + + {{ template "stylesheets" . }} + Freitagsfoo + + + +
+ + + + {{ template "upcomingTalks" . }} + +
+ + + +{{end}} \ No newline at end of file diff --git a/hosted/tmpl/upcomingTalks.html b/hosted/tmpl/upcomingTalks.html new file mode 100644 index 0000000..6eb1b49 --- /dev/null +++ b/hosted/tmpl/upcomingTalks.html @@ -0,0 +1,41 @@ +{{ define "upcomingTalks" }} +
+

Upcoming talks: {{ .upcomingCount }}

+
+
+
+ {{ range $i, $talk := .upcomingTalks }} +
+
+
+
{{ $talk.Title }}
+
+
+

{{ $talk.Description }}

+ Details +
+ +
+
+ {{ end }} +
+ + {{ if .All }} + {{ else }} +
+ view all +
+ {{ end }} +
+
+
+{{ end }} \ No newline at end of file -- cgit 1.4.1