mirror of
https://github.com/CoolnsX/my-website.git
synced 2025-12-20 07:15:19 +05:30
14 lines
283 B
HTML
14 lines
283 B
HTML
<div class="my-4 text-white space-y-4">
|
|
<!-- File name -->
|
|
{% if file %}
|
|
<p class="text font-semibold text-gray-400 ml-2 break-words">
|
|
{{ file }}
|
|
</p>
|
|
{% endif %}
|
|
|
|
<!-- Body content -->
|
|
<div>
|
|
{{ body | markdown | safe }}
|
|
</div>
|
|
</div>
|