Я пытаюсь что-то построить с помощью Reveal.У меня есть контент на месте, он структурирован правильно.Я вижу, что раскрываются CSS и тематические CSS.JS работает, я вижу приращение страниц.
Контент не отображается.Ничего.
Я вижу, как движутся все части, но нет изменений в содержании.Кто-нибудь еще сталкивался с этим с помощью Reveal?
Настройка кода (в шаблоне Django)
{% block wrapper %}
<div class="reveal">
<div class="slides">
<section><h1>Landing Slide</h1></section>
<section></section>
<section>
{% comment %}
The wolott section
{% endcomment %}
<section></section>
<section></section>
<section></section>
<section></section>
<section></section>
</section>
<section>
{% comment %}
The coldfire section
{% endcomment %}
</section>
<section>
{% comment %}
The opus section
{% endcomment %}
</section>
<section>
{% comment %}
The porter section
{% endcomment %}
</section>
<section>
{% comment %}
The wsecu section
{% endcomment %}
</section>
<section>
{% comment %}
The siete section
{% endcomment %}
</section>
<section>
{% comment %}
Testimonails
{% endcomment %}
</section>
<section>
{% comment %}
The navigation section
{% endcomment %}
</section>
<section>
{% comment %}
The contact form
{% endcomment %}
</section>
</div>
</div>
{% endblock wrapper %}
{% block core_js %}{% endblock core_js %}
{% block extra_js %}
<script src="{% static 'lib/reveal/js/reveal.js' %}"></script>
<script>
Reveal.initialize({
controls: true,
history: true,
slideNumber: true
});
</script>
{% endblock extra_js %}