added slides
This commit is contained in:
parent
3d5c0691f8
commit
6209144461
5 changed files with 36 additions and 1 deletions
|
|
@ -20,6 +20,7 @@
|
|||
{% set navigation_bar = [
|
||||
('/investor', 'investor', 'Investor'),
|
||||
('/enthusiast', 'enthusiast', 'Enthusiast'),
|
||||
('/slides', 'slides', 'Slides')
|
||||
] -%}
|
||||
{% set active_page = active_page|default('index') -%}
|
||||
|
||||
|
|
|
|||
25
src/templates/slide_body.html
Normal file
25
src/templates/slide_body.html
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
<head>
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/reveal.js/3.0.0/css/reveal.min.css">
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/reveal.js/3.0.0/css/theme/night.css">
|
||||
|
||||
</head>
|
||||
|
||||
<div class="reveal">
|
||||
<div class="slides">
|
||||
<section>
|
||||
<p>
|
||||
Deployed on Heroku
|
||||
|
||||
Check it out at http://pydatavizday.herokuapp.com/
|
||||
</p>
|
||||
</section>
|
||||
<section>Presentation material</section>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script src="https://cdn.jsdelivr.net/reveal.js/3.0.0/js/reveal.min.js"></script>
|
||||
<script>
|
||||
Reveal.initialize();
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
3
src/templates/slides.html
Normal file
3
src/templates/slides.html
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
{% extends "layout.html" %}
|
||||
{% set active_page = "slides" %}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue