Markdown should contain content, not HTML and JS code. Signed-off-by: Roman Tsisyk <roman@tsisyk.com>
11 lines
180 B
HTML
11 lines
180 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
|
|
<h1>{{ resource.title }}</h1>
|
|
|
|
{{ resource.content | safe }}
|
|
|
|
{% include 'google_native_app_prompt.html' %}
|
|
|
|
{% endblock content %}
|