From f490626b8a2ff360c4a914615484ea6e5bf8cdee Mon Sep 17 00:00:00 2001 From: Jonas Kohl Date: Sat, 19 Oct 2024 12:38:45 +0200 Subject: Add modern theme --- src/application/templates/modern/delete_post.twig | 40 +++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 src/application/templates/modern/delete_post.twig (limited to 'src/application/templates/modern/delete_post.twig') diff --git a/src/application/templates/modern/delete_post.twig b/src/application/templates/modern/delete_post.twig new file mode 100644 index 0000000..e37841a --- /dev/null +++ b/src/application/templates/modern/delete_post.twig @@ -0,0 +1,40 @@ +{% set title = __("Delete post") %} + +{% extends "base.twig" %} + +{% block content %} + + + +
+ + {{ __("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