From 2fe3b4972f02be8b0c6143325d541ddda4b91559 Mon Sep 17 00:00:00 2001 From: vulonkaaz <7442677+vulonkaaz@users.noreply.github.com> Date: Wed, 19 Jun 2024 17:44:29 +0200 Subject: Initial version --- views/index.html | 22 ++++++++++++ views/partials/canvas.html | 86 ++++++++++++++++++++++++++++++++++++++++++++++ views/thread.html | 22 ++++++++++++ 3 files changed, 130 insertions(+) create mode 100644 views/index.html create mode 100644 views/partials/canvas.html create mode 100644 views/thread.html (limited to 'views') diff --git a/views/index.html b/views/index.html new file mode 100644 index 0000000..67045c2 --- /dev/null +++ b/views/index.html @@ -0,0 +1,22 @@ + + + + +Paperchan.club + + + + + +
+

Paperchan.club

+
+ {{ range .posts }} +
+ +

Id : {{.Id}}, Replies : {{.Replies}}

+

{{.CreatedAt}}

+
+ {{ end }} +
+{{template "partials/canvas" .}} diff --git a/views/partials/canvas.html b/views/partials/canvas.html new file mode 100644 index 0000000..9b27667 --- /dev/null +++ b/views/partials/canvas.html @@ -0,0 +1,86 @@ +
+
+ +
+ pen size :
+ +
+ +
+ + + + + diff --git a/views/thread.html b/views/thread.html new file mode 100644 index 0000000..6106b79 --- /dev/null +++ b/views/thread.html @@ -0,0 +1,22 @@ + + + + +Paperchan.club - Thread {{.threadId}} + + + + + +
+

Paperchan.club

+

Home

+
+ {{ range .posts }} +
+ +

{{.CreatedAt}}

+
+ {{ end }} +
+{{template "partials/canvas" .}} -- cgit v1.2.3