From 107128ad4d324a49b99a445c7a89cbe22d06c714 Mon Sep 17 00:00:00 2001 From: cgcristi Date: Sun, 8 Sep 2024 00:13:01 +0200 Subject: [PATCH] order --- templates/content.html | 111 +++++++++++++++++++++++++++++++++++++++++ templates/file.html | 103 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 214 insertions(+) create mode 100644 templates/content.html create mode 100644 templates/file.html diff --git a/templates/content.html b/templates/content.html new file mode 100644 index 0000000..d8b38a4 --- /dev/null +++ b/templates/content.html @@ -0,0 +1,111 @@ + + + + + + Text + + + +
+

Text

+
+ {% if content %} + {{ content }} + {% elif url %} +

Redirecting to: {{ url }}

+ {% else %} +

Content not found.

+ {% endif %} +
+ {% if created_at %} +
+

Created at: {{ created_at }}

+
+ {% endif %} +
+ + diff --git a/templates/file.html b/templates/file.html new file mode 100644 index 0000000..067bcf4 --- /dev/null +++ b/templates/file.html @@ -0,0 +1,103 @@ + + + + + + File + + + +
+

File

+
+

File Name: {{ name }}

+

File Size: {{ size }} bytes

+

Last Modified: {{ modified_at }}

+

Download the file

+
+
+ +