From 7d685c5e64149e20c7dc8977f645e050be53ddfd Mon Sep 17 00:00:00 2001 From: Jonas Kohl Date: Tue, 10 Dec 2024 17:15:10 +0100 Subject: Add classic theme --- src/application/templates/old/delete_post.twig | 42 ++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 src/application/templates/old/delete_post.twig (limited to 'src/application/templates/old/delete_post.twig') diff --git a/src/application/templates/old/delete_post.twig b/src/application/templates/old/delete_post.twig new file mode 100644 index 0000000..62c25fe --- /dev/null +++ b/src/application/templates/old/delete_post.twig @@ -0,0 +1,42 @@ +{% set title = __("Delete post") %} + +{% extends "base.twig" %} + +{% block content %} + + + + + + + + + + + +
+

{{ __("Do you want to delete this post?") }}

+
+ {{ __("Are you sure you want to delete the following post:") }}

+ + {% include "components/post.twig" with { + post: ctx.post, + postAuthor: ctx.postAuthor, + attachments: ctx.attachments, + hide_actions: true, + } %} +
+
+
+ + + +
+
+ + + +
+
+ +{% endblock %} -- cgit v1.2.3