mirror of
https://github.com/Crazyco-xyz/48hr.email.git
synced 2026-01-09 11:19:36 +01:00
18 lines
616 B
Twig
18 lines
616 B
Twig
{% extends 'layout.twig' %}
|
|
|
|
{% block header %}{% endblock %}
|
|
|
|
{% block body %}
|
|
<div class="raw-container">
|
|
<div class="raw-tabs">
|
|
<button class="raw-tab-button active" data-target="raw">Raw (escaped)</button>
|
|
<button class="raw-tab-button" data-target="decoded">Decoded (quoted-printable)</button>
|
|
</div>
|
|
<div class="raw-panels">
|
|
<pre class="raw-mail" data-panel="raw">{{ mail | e }}</pre>
|
|
<pre class="raw-mail hidden" data-panel="decoded">{{ decoded | e }}</pre>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block footer %}{% endblock %}
|