{% for slide in slides %}
{{ slide.html }}
{% endfor %}
// Full list of configuration options available here: // https://github.com/hakimel/reveal.js#configuration Reveal.initialize({ controls: true, progress: true, history: true, center: true, theme: Reveal.getQueryHash().theme, // available themes are in /css/theme transition: Reveal.getQueryHash().transition || 'default', // default/cube/page/concave/zoom/linear/fade/none // Optional libraries used to extend on reveal.js dependencies: [ { src: '//raw.github.com/eligrey/classList.js/master/classList.js', condition: function() { return !document.body.classList; } }, { src: '//cdnjs.cloudflare.com/ajax/libs/highlight.js/7.3/highlight.min.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } }, { src: '//raw.github.com/hakimel/reveal.js/master/plugin/zoom-js/zoom.js', async: true, condition: function() { return !!document.body.classList; } }, { src: '//raw.github.com/hakimel/reveal.js/master/plugin/notes/notes.js', async: true, condition: function() { return !!document.body.classList; } } ] });