Skip to content

Commit

Permalink
Add content to git presentation
Browse files Browse the repository at this point in the history
  • Loading branch information
BerriJ committed Jun 12, 2019
1 parent a8c5f1d commit 28d3786
Show file tree
Hide file tree
Showing 15 changed files with 409 additions and 1,152 deletions.
Binary file modified .DS_Store
Binary file not shown.
Binary file modified git_vcs/.DS_Store
Binary file not shown.
100 changes: 100 additions & 0 deletions git_vcs/default.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,100 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="$lang$" xml:lang="$lang$"$if(dir)$ dir="$dir$"$endif$>
<head>
<title>$if(title-prefix)$$title-prefix$ – $endif$$pagetitle$</title>
<meta charset="utf-8" />
$for(author-meta)$
<meta name="author" content="$author-meta$" />
$endfor$
$if(date-meta)$
<meta name="date" content="$date-meta$" />
$endif$
$if(keywords)$
<meta name="keywords" content="$for(keywords)$$keywords$$sep$, $endfor$" />
$endif$
$for(header-includes)$
$header-includes$
$endfor$
$for(css)$
<link rel="stylesheet" href="$css$" type="text/css" />
$endfor$
</head>
<body>
<textarea id="source">
$if(title-slide)$
$if(title)$
class: $title-slide-class$

# $title$
$if(subtitle)$
## $subtitle$
$endif$
$for(author)$
### $author$
$endfor$
$if(institute)$
$for(institute)$
### $institute$
$endfor$
$endif$
$if(date)$
### $date$
$endif$

---
$endif$
$endif$

$for(include-before)$
$include-before$
$endfor$
</textarea>
$for(include-after)$
$include-after$
$endfor$

<script>
(function() {
var links = document.getElementsByTagName('a');
for (var i = 0; i < links.length; i++) {
if (/^(https?:)?\/\//.test(links[i].getAttribute('href'))) {
links[i].target = '_blank';
}
}
})();
</script>

$if(mathjax-url)$
<script>
slideshow._releaseMath = function(el) {
var i, text, code, codes = el.getElementsByTagName('code');
for (i = 0; i < codes.length;) {
code = codes[i];
if (code.parentNode.tagName !== 'PRE' && code.childElementCount === 0) {
text = code.textContent;
if (/^\\\((.|\s)+\\\)$$/.test(text) || /^\\\[(.|\s)+\\\]$$/.test(text) ||
/^\$$\$$(.|\s)+\$$\$$$$/.test(text) ||
/^\\begin\{([^}]+)\}(.|\s)+\\end\{[^}]+\}$$/.test(text)) {
code.outerHTML = code.innerHTML; // remove <code></code>
continue;
}
}
i++;
}
};
slideshow._releaseMath(document);
</script>
<!-- dynamically load mathjax for compatibility with self-contained -->
<script>
(function () {
var script = document.createElement('script');
script.type = 'text/javascript';
script.src = '$mathjax-url$';
if (location.protocol !== 'file:' && /^https?:/.test(script.src))
script.src = script.src.replace(/^https?:/, '');
document.getElementsByTagName('head')[0].appendChild(script);
})();
</script>
$endif$
</body>
</html>
Empty file added git_vcs/flights.csv
Empty file.
Loading

0 comments on commit 28d3786

Please sign in to comment.