Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add 2016 recordings #69

Merged
merged 10 commits into from Mar 9, 2017
226 changes: 0 additions & 226 deletions 2014/javascripts/recordings.js

This file was deleted.

13 changes: 12 additions & 1 deletion 2014/recordings.html
Expand Up @@ -14,7 +14,7 @@
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript" src="./javascripts/recordings.js"></script>
<script type="text/javascript" src="../js/recordings.js"></script>
<title>Talk Recordings and Transcripts - !!Con</title>
</head>

Expand Down Expand Up @@ -46,6 +46,17 @@ <h3 class="talk-info"></h3>
<div style="clear:both"></div>
</div>

<script defer="defer">
jQuery.getJSON('talks.json', function(talks) {
generateTalks(
'#talk-template',
'#talk_container',
talks,
"../2014-transcripts/"
);
});
</script>

<footer>
Hosted on
<a href="https://github.com/hausdorff/bangbangcon.github.io" target="_source">
Expand Down