From 4caa665aa3f323571c8f791588c7e1baeaaf6dc7 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Thu, 19 Nov 2020 05:16:45 +0000 Subject: repo: :star: --- templates/header.html.hbs | 16 ++++++++++++++++ templates/index.html.hbs | 18 ++++++++++++++++++ templates/post.html.hbs | 35 +++++++++++++++++++++++++++++++++++ templates/threads.html.hbs | 13 +++++++++++++ 4 files changed, 82 insertions(+) create mode 100644 templates/header.html.hbs create mode 100644 templates/index.html.hbs create mode 100644 templates/post.html.hbs create mode 100644 templates/threads.html.hbs (limited to 'templates') diff --git a/templates/header.html.hbs b/templates/header.html.hbs new file mode 100644 index 0000000..6057f69 --- /dev/null +++ b/templates/header.html.hbs @@ -0,0 +1,16 @@ + + +chan + +
+ +
diff --git a/templates/index.html.hbs b/templates/index.html.hbs new file mode 100644 index 0000000..92d2b35 --- /dev/null +++ b/templates/index.html.hbs @@ -0,0 +1,18 @@ +{{> header }} + +
+⣿⣿⣷⡁⢆⠈⠕⢕⢂⢕⢂⢕⢂⢔⢂⢕⢄⠂⣂⠂⠆⢂⢕⢂⢕⢂⢕⢂⢕⢂
+⣿⣿⣿⡷⠊⡢⡹⣦⡑⢂⢕⢂⢕⢂⢕⢂⠕⠔⠌⠝⠛⠶⠶⢶⣦⣄⢂⢕⢂⢕
+⣿⣿⠏⣠⣾⣦⡐⢌⢿⣷⣦⣅⡑⠕⠡⠐⢿⠿⣛⠟⠛⠛⠛⠛⠡⢷⡈⢂⢕⢂
+⠟⣡⣾⣿⣿⣿⣿⣦⣑⠝⢿⣿⣿⣿⣿⣿⡵⢁⣤⣶⣶⣿⢿⢿⢿⡟⢻⣤⢑⢂
+⣾⣿⣿⡿⢟⣛⣻⣿⣿⣿⣦⣬⣙⣻⣿⣿⣷⣿⣿⢟⢝⢕⢕⢕⢕⢽⣿⣿⣷⣔
+⣿⣿⠵⠚⠉⢀⣀⣀⣈⣿⣿⣿⣿⣿⣿⣿⣿⣿⣗⢕⢕⢕⢕⢕⢕⣽⣿⣿⣿⣿
+⢷⣂⣠⣴⣾⡿⡿⡻⡻⣿⣿⣴⣿⣿⣿⣿⣿⣿⣷⣵⣵⣵⣷⣿⣿⣿⣿⣿⣿⡿
+⢌⠻⣿⡿⡫⡪⡪⡪⡪⣺⣿⣿⣿⣿⣿⠿⠿⢿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠃
+⠣⡁⠹⡪⡪⡪⡪⣪⣾⣿⣿⣿⣿⠋⠐⢉⢍⢄⢌⠻⣿⣿⣿⣿⣿⣿⣿⣿⠏⠈
+⡣⡘⢄⠙⣾⣾⣾⣿⣿⣿⣿⣿⣿⡀⢐⢕⢕⢕⢕⢕⡘⣿⣿⣿⣿⣿⣿⠏⠠⠈
+⠌⢊⢂⢣⠹⣿⣿⣿⣿⣿⣿⣿⣿⣧⢐⢕⢕⢕⢕⢕⢅⣿⣿⣿⣿⡿⢋⢜⠠⠈
+⠄⠁⠕⢝⡢⠈⠻⣿⣿⣿⣿⣿⣿⣿⣷⣕⣑⣑⣑⣵⣿⣿⣿⡿⢋⢔⢕⣿⠠⠈
+⠨⡂⡀⢑⢕⡅⠂⠄⠉⠛⠻⠿⢿⣿⣿⣿⣿⣿⣿⣿⣿⡿⢋⢔⢕⢕⣿⣿⠠⠈
+⠄⠪⣂⠁⢕⠆⠄⠂⠄⠁⡀⠂⡀⠄⢈⠉⢍⢛⢛⢛⢋⢔⢕⢕⢕⣽⣿⣿⠠⠈
+
diff --git a/templates/post.html.hbs b/templates/post.html.hbs new file mode 100644 index 0000000..37c5ec6 --- /dev/null +++ b/templates/post.html.hbs @@ -0,0 +1,35 @@ +{{> header }} + +
+ + + + + + + + + + + + + + + + + + + + +
name + + +
comment + +
verification + i'm not a robot +
file + +
+
diff --git a/templates/threads.html.hbs b/templates/threads.html.hbs new file mode 100644 index 0000000..5a656f7 --- /dev/null +++ b/templates/threads.html.hbs @@ -0,0 +1,13 @@ +{{> header }} + +{{ #if this }} + {{ #each this }} +
+

{{ this.name }}

+

{{ this.comment }}

+
+
+ {{ /each }} +{{ else }} +

no posts today

+{{ /if }} -- cgit v1.2.3