pyDataVizDay/src/templates/slides.html
Walker Waylon Scott 908a4608a1 refactor(body) moved body from layout to separate pages
this allows us to wrap the body with custom divs for each page if necessary
2017-07-17 22:26:42 -05:00

30 lines
No EOL
1.1 KiB
HTML

{% extends "layout.html" %}
{% set active_page = "slides" %}
{% block title %}slides{% endblock %}
{% block head %}
{{ super() }}
<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/css/reveal.css">
<link rel="stylesheet" href="static/css/theme/black.css" id="theme">
<!-- Theme used for syntax highlighting of code -->
<link rel="stylesheet" href="static/lib/css/zenburn.css">
<!-- Printing and PDF exports -->
<script>
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match( /print-pdf/gi ) ? 'static/css/print/pdf.css' : 'static/css/print/paper.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
</script>
{% endblock %}
{% block body %}
{{ super ()}}
{{ body | safe }}
{% endblock %}