diff options
Diffstat (limited to 'template/index.html')
-rw-r--r-- | template/index.html | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/template/index.html b/template/index.html new file mode 100644 index 0000000..a75010c --- /dev/null +++ b/template/index.html @@ -0,0 +1,21 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="UTF-8" /> + <title>{{ title }}</title> + {{{style}}} + <script src="remark.min.js"></script> + <script> + function create() { + return remark.create({ + {{{source}}}, + ratio: '16:9', + highlightLines: true, + countIncrementalSlides: false, + highlightStyle: 'atom-one-light' + }); + } + </script> + </head> + <body onload="slideshow = create();"></body> +</html> |