added dark and light version of slides
This commit is contained in:
parent
a2cc24dff7
commit
13fe9aa4d3
3 changed files with 22 additions and 4 deletions
|
|
@ -1,5 +1,5 @@
|
|||
{% extends "layout.html" %}
|
||||
{% set active_page = "slides" %}
|
||||
|
||||
{% block title %}slides{% endblock %}
|
||||
{% block head %}
|
||||
{{ super() }}
|
||||
|
|
@ -9,10 +9,9 @@
|
|||
<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">
|
||||
<!-- <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>
|
||||
|
|
|
|||
9
src/templates/slides_dark.html
Normal file
9
src/templates/slides_dark.html
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
{% set active_page = "slides" %}
|
||||
{% extends "slides.html" %}
|
||||
{% block head %}
|
||||
{{ super() }}
|
||||
<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">
|
||||
|
||||
{% endblock %}
|
||||
10
src/templates/slides_light.html
Normal file
10
src/templates/slides_light.html
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
{% extends "slides.html" %}
|
||||
{% set active_page = "light" %}
|
||||
{% block head %}
|
||||
{{ super() }}
|
||||
<link rel="stylesheet" href="static/css/theme/solarized.css" id="theme">
|
||||
<!-- Theme used for syntax highlighting of code -->
|
||||
<link rel="stylesheet" href="static/lib/css/android-light.css">
|
||||
{# <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/styles/sunburst.min.css"> #}
|
||||
|
||||
{% endblock %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue