Files
galaxy/scripts/slideshow/slideshow_template.html
T
John Chilton a79ae2a8c2 Align architecture slides with training-material remarkjs template.
- Copy over the training material style CSS template and add to it only what is needed.
- Cleanup style and layout handling in architecture slides markdown.
- Update generated images for white background.
- Small updates in content to architecture for recent changes (and CONTRIBUTING.md linked to from slides).
2017-02-10 15:32:58 -05:00

20 lines
510 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>${title}</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<textarea id="source">
${content}
</textarea>
<script src="https://remarkjs.com/downloads/remark-latest.min.js" type="text/javascript">
</script>
<script type="text/javascript">
var slideshow = remark.create({navigation: {scroll: false,}});
var hljs = remark.highlighter.engine;
</script>
</body>
</html>