Files
freedit/templates/preview.html
freedit-dev b0882b25a9 i18n (#301)
* i18n

* i18n

* dedup feed items

* fmt

* update

* typos

* [wip] #208

* [wip]

* i18n

* i18n

* i18n

* typos

* i18n

* Update i18n/en.toml

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>

* i18n

* i18n

* typos happy

* typos happy

---------

Co-authored-by: GitHub <github@github.com>
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
2024-10-21 23:02:38 +08:00

19 lines
556 B
HTML

{% extends "layout.html" %}
{% block csp %}
<meta http-equiv="Content-Security-Policy" content="default-src 'self';
img-src 'self'; script-src 'none'; style-src 'self' 'unsafe-inline'; object-src 'none';
font-src 'none'; form-action 'self'; frame-src 'none'; media-src 'none'; manifest-src 'none'; worker-src 'none';">
{% endblock %}
{% block content %}
<article class="media box">
<div class="media-content">
<div class="content">
{{content}}
</div>
</div>
</article>
<div class="divider"></div>
{% endblock %}