Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adding minimal change to allow just slides sections, etc. #161

Merged
merged 1 commit into from
Nov 27, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 5 additions & 2 deletions nbconvert/templates/html/slides_reveal.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -159,13 +159,16 @@ a.anchor-link {


{% block body %}
{% block pre_slides %}
<body>
{% endblock pre_slides %}

<div class="reveal">
<div class="slides">
{{ super() }}
</div>
</div>

{% block post_slides %}
<script>

require(
Expand Down Expand Up @@ -216,10 +219,10 @@ require(

}
);

</script>

</body>
{% endblock post_slides %}
{% endblock body %}

{% block footer %}
Expand Down