aboutsummaryrefslogtreecommitdiff
path: root/src/guff/views/posts/project.cr
diff options
context:
space:
mode:
Diffstat (limited to 'src/guff/views/posts/project.cr')
-rw-r--r--src/guff/views/posts/project.cr13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/guff/views/posts/project.cr b/src/guff/views/posts/project.cr
new file mode 100644
index 0000000..3da0a64
--- /dev/null
+++ b/src/guff/views/posts/project.cr
@@ -0,0 +1,13 @@
+require "../template-html"
+
+class Guff::Views::Posts::Project < Guff::Views::TemplateHTMLView
+ def initialize(context : Context, @item : Hash(String, String))
+ super(
+ context: context,
+ theme_id: @item["theme_id"].to_i32,
+ theme_slug: @item["theme_slug"],
+ template_id: "post-project.html",
+ data: @item,
+ )
+ end
+end