Source: site.view [edit]
Function name: presentationRender
Arguments: slides
Description:
Page type: html
Render function:  
Module: siteutil

Page source:

<!doctype html>
<html lang="en">

	<head>
		<meta charset="utf-8">

		<title>Slides</title>

		<meta name="description" content="A framework for easily creating beautiful presentations using HTML">
		<meta name="author" content="Hakim El Hattab">

		<meta name="apple-mobile-web-app-capable" content="yes" />
		<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />

		<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">

      <link rel="stylesheet" href="/static/reveal.js-7d19b4f/css/reveal.min.css">
      <link rel="stylesheet" href="/static/reveal.js-7d19b4f/css/theme/default.css" id="theme">

		<!-- For syntax highlighting -->
      <link rel="stylesheet" href="/static/reveal.js-7d19b4f/lib/css/zenburn.css">

		<!-- If the query includes 'print-pdf', use the PDF print sheet -->
		<script>
          document.write( '<link rel="stylesheet" href="/static/reveal.js-7d19b4f/css/print/' + ( window.location.search.match( /print-pdf/gi ) ? 'pdf' : 'paper' ) + '.css" type="text/css" media="print">' );
		</script>

		<!--[if lt IE 9]>
<script src="/static/reveal.js-7d19b4f/lib/js/html5shiv.js"></script>
		<![endif]-->
	</head>

	<body>

		<div class="reveal">

			<!-- Any section element inside of this container is displayed as a slide -->
			<div class="slides">

<webl>
   var Sections = Elem(slides, "section");
   var html = "";
   every section in Sections do
      html = html + Markup(section)
   end;
   html;
</webl>

			</div>

		</div>

        <script src="/static/reveal.js-7d19b4f/lib/js/head.min.js"></script>
        <script src="/static/reveal.js-7d19b4f/js/reveal.min.js"></script>

		<script>

			// Full list of configuration options available here:
			// https://github.com/hakimel/reveal.js#configuration
			Reveal.initialize({
				controls: true,
				progress: true,
				history: false,
				center: true,

				theme: 
'<webl>
    var Theme = Elem(slides, "theme");
    if (Size(Theme) > 0) then
       Text(Theme[0])
    else 
       "default"
    end;
</webl>',
                     //Reveal.getQueryHash().theme, // available themes are in /css/theme
				transition: 
'<webl>
    var Transition = Elem(slides, "transition");
    if (Size(Transition) > 0) then
       Text(Transition[0])
    else 
       "default"
    end;
</webl>',              
              // Reveal.getQueryHash().transition || 'default', // default/cube/page/concave/zoom/linear/fade/none

				// Optional libraries used to extend on reveal.js
				dependencies: [
					{ src: '/static/reveal.js-7d19b4flib/js/classList.js', 
                         condition: function() { return !document.body.classList; } },
                    // { src: '/static/reveal.js-7d19b4fplugin/markdown/marked.js', 
                    //      condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
                    // { src: '/static/reveal.js-7d19b4fplugin/markdown/markdown.js', 
                    //     condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
					{ src: '/static/reveal.js-7d19b4fplugin/highlight/highlight.js', 
                          async: true, callback: function() { hljs.initHighlightingOnLoad(); } },
					{ src: '/static/reveal.js-7d19b4fplugin/zoom-js/zoom.js', 
                          async: true, condition: function() { return !!document.body.classList; } },
					{ src: '/static/reveal.js-7d19b4fplugin/notes/notes.js', 
                          async: true, condition: function() { return !!document.body.classList; } }
					// { src: '/static/reveal.js-7d19b4fplugin/search/search.js', 
                    //    async: true, condition: function() { return !!document.body.classList; } }
					// { src: '/static/reveal.js-7d19b4fplugin/remotes/remotes.js', 
                    //    async: true, condition: function() { return !!document.body.classList; } }
				]
			});

		</script>


	</body>
</html>