realms-wiki/reimagine/templates/page/page.html

15 lines
277 B
HTML
Raw Normal View History

{% extends 'layout.html' %}
{% block body %}
2013-10-02 04:50:48 +03:00
<div id="page-content" style="display:none">
{{ page.data|safe }}
</div>
2013-10-02 04:50:48 +03:00
{% endblock %}
{% block js %}
<script>
$(function(){
$("#page-content").html(converter({{ page.data|tojson|safe }})).show();
});
</script>
{% endblock %}