summaryrefslogtreecommitdiff
path: root/src/jwebmail/templates/readmail.html
diff options
context:
space:
mode:
authorJannis M. Hoffmann <jannis@fehcom.de>2023-12-03 19:22:12 +0100
committerJannis M. Hoffmann <jannis@fehcom.de>2023-12-03 19:22:12 +0100
commit2cf2a68bd1c25d8fe4f3126f40bd57982cc6b2a4 (patch)
treeb5c8ed0e1cfe8eac311829296a9aca062bb1abc1 /src/jwebmail/templates/readmail.html
initial commit
Diffstat (limited to 'src/jwebmail/templates/readmail.html')
-rw-r--r--src/jwebmail/templates/readmail.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/jwebmail/templates/readmail.html b/src/jwebmail/templates/readmail.html
new file mode 100644
index 0000000..f41197a
--- /dev/null
+++ b/src/jwebmail/templates/readmail.html
@@ -0,0 +1,17 @@
+{% extends 'mainlayout.html' %}
+
+{% block content %}
+ <div class="section container">
+
+ <h1 class=title>Read Mail</h1>
+
+ {{ format_mail(msg) }}
+
+ <nav>
+ <a href="javascript:history.back()" class="button">
+ {% trans %}back{% endtrans %}
+ </a>
+ </nav>
+
+ </div>
+{% endblock %}