feat(markdown slides) Moved slide body to an external markdown file.

This commit is contained in:
Walker Waylon Scott 2017-07-02 11:36:12 -05:00
parent 8041ee606a
commit 49c5372c43
3 changed files with 172 additions and 21 deletions

View file

@ -1,3 +1,25 @@
{% 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 %}