mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-09-19 10:51:34 +08:00
- 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).
20 lines
510 B
HTML
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>
|