diff --git a/lib/chili_project/liquid/tags/identity.rb b/lib/chili_project/liquid/tags/identity.rb
new file mode 100644
index 0000000000000000000000000000000000000000..07daa4476a1734c1e433e5e398e440ab6d68bb3a
--- /dev/null
+++ b/lib/chili_project/liquid/tags/identity.rb
@@ -0,0 +1,14 @@
+module ChiliProject::Liquid::Tags
+  class Identity < Tag
+    def initialize(tag_name, markup, tokens)
+      @tag_name = tag_name
+      @markup = markup
+      @tokens = tokens
+      super
+    end
+
+    def render(context)
+      "{% #{@tag_name} %}"
+    end
+  end
+end
\ No newline at end of file