forked from tfcoop/www_duniayetu
17 lines
400 B
HTML
17 lines
400 B
HTML
|
{% extends "_default/base.html" %}
|
||
|
|
||
|
{% block content %}
|
||
|
|
||
|
<main>
|
||
|
<script src="https://cdn.jsdelivr.net/npm/mermaid/dist/mermaid.min.js"></script>
|
||
|
<script>mermaid.initialize({startOnLoad:true});</script>
|
||
|
<div>
|
||
|
{% if page %}
|
||
|
{{page.content | safe}}
|
||
|
{% else %}
|
||
|
{{section.content | safe}}
|
||
|
{% endif %}
|
||
|
</div>
|
||
|
|
||
|
</main> {% endblock content %}
|