Website/templates/cse662_2019_slides.erb
2019-08-26 17:03:17 -07:00

132 lines
5.1 KiB
Plaintext

<!doctype html>
<html lang="en">
<% short_title = "CSE 662 Fall 2019" %>
<head>
<meta charset="utf-8">
<title><%=short_title%> - <%= title %></title>
<meta name="description" content="<%=short_title%> - <%= title %>">
<meta name="author" content="Oliver Kennedy">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui">
<link rel="stylesheet" href="../../../../slides/reveal.js-3.7.0/css/reveal.css">
<link rel="stylesheet" href="ubodin.css" id="theme">
<!-- Code syntax highlighting -->
<link rel="stylesheet" href="../../../../slides/reveal.js-3.7.0/lib/css/zenburn.css">
<!-- Printing and PDF exports -->
<script>
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match( /print-pdf/gi ) ? '../../../../slides/reveal.js-3.7.0/css/print/pdf.css' : '../../../../slides/reveal.js-3.7.0/css/print/paper.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
</script>
<!--[if lt IE 9]>
<script src="../../../../slides/reveal.js-3.7.0/lib/js/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<div class="reveal">
<!-- Any section element inside of this container is displayed as a slide -->
<div class="header">
<!-- Any Talk-Specific Header Content Goes Here -->
<%=short_title%> - <%= title %>
</div>
<div class="slides">
<section>
<h3><%= title %></h3>
<h4><%=short_title%></h4>
<p><%= date %></p>
<% if defined? papers %>
<h5><b>Papers</b>: <%= papers %></h5>
<% end %>
</section>
<%= body %>
</div></div>
<script src="../../../../slides/reveal.js-3.7.0/lib/js/head.min.js"></script>
<script src="../../../../slides/reveal.js-3.7.0/js/reveal.js"></script>
<script>
// Full list of configuration options available at:
// https://github.com/hakimel/../../../../slides/reveal.js#co7figuration
Reveal.initialize({
controls: true,
progress: true,
history: true,
center: true,
slideNumber: true,
transition: 'fade', // none/fade/slide/convex/concave/zoom
chart: {
defaults: {
global: {
title: { fontColor: "#333", fontSize: 24 },
legend: {
labels: { fontColor: "#333", fontSize: 20 },
},
responsiveness: true
},
scale: {
scaleLabel: { fontColor: "#333", fontSize: 20 },
gridLines: { color: "#333", zeroLineColor: "#333" },
ticks: { fontColor: "#333", fontSize: 16 },
}
},
line: { borderColor: [ "rgba(20,220,220,.8)" , "rgba(220,120,120,.8)", "rgba(20,120,220,.8)" ], "borderDash": [ [5,10], [0,0] ]},
bar: { backgroundColor: [
"rgba(220,220,220,0.8)",
"rgba(151,187,205,0.8)",
"rgba(205,151,187,0.8)",
"rgba(187,205,151,0.8)"
]
},
pie: { backgroundColor: [ ["rgba(0,0,0,.8)" , "rgba(220,20,20,.8)", "rgba(20,220,20,.8)", "rgba(220,220,20,.8)", "rgba(20,20,220,.8)"] ]},
radar: { borderColor: [ "rgba(20,220,220,.8)" , "rgba(220,120,120,.8)", "rgba(20,120,220,.8)" ]},
},
// Optional ../../../../slides/reveal.js pl7gins
dependencies: [
{ src: '../../../../slides/reveal.js-3.7.0/lib/js/classList.js', condition: function() { return !document.body.classList; } },
{ src: '../../../../slides/reveal.js-3.7.0/plugin/math/math.js',
condition: function() { return true; },
mathjax: '../../../../slides/reveal.js-3.7.0/js/MathJax.js'
},
{ src: '../../../../slides/reveal.js-3.7.0/plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: '../../../../slides/reveal.js-3.7.0/plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: '../../../../slides/reveal.js-3.7.0/plugin/highlight/highlight.js', async: true, condition: function() { return !!document.querySelector( 'pre code' ); }, callback: function() { hljs.initHighlightingOnLoad(); } },
{ src: '../../../../slides/reveal.js-3.7.0/plugin/zoom-js/zoom.js', async: true },
{ src: '../../../../slides/reveal.js-3.7.0/plugin/notes/notes.js', async: true },
// Chart.min.js
{ src: '../../../../slides/reveal.js-3.7.0/plugin/chart/Chart.min.js'},
// the plugin
{ src: '../../../../slides/reveal.js-3.7.0/plugin/chart/csv2chart.js'},
{ src: '../../../../slides/reveal.js-3.7.0/plugin/svginline/es6-promise.auto.js', async: false },
{ src: '../../../../slides/reveal.js-3.7.0/plugin/svginline/data-src-svg.js', async: false }
]
});
</script>
</body>
</html>