-
Notifications
You must be signed in to change notification settings - Fork 3
/
pete70.html
89 lines (81 loc) · 2.94 KB
/
pete70.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE HTML>
<!--
Spatial by TEMPLATED
templated.co @templatedco
Released for free under the Creative Commons Attribution 3.0 license (templated.co/license)
-->
<html>
<head>
<link href="//fonts.googleapis.com/css?family=Crimson+Text:300italic,400italic|Roboto:300,400,300italic,400italic" rel="stylesheet">
<title>Pete's Birthday</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/skel.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
<script src="assets/js/showdown.min.js"></script>
<link rel="stylesheet" href="assets/css/main.css" />
</head>
<body>
<!-- Header -->
<header id="header">
<h1><strong><a href="index.html"><font color="navy">MIT CSAIL MEDG</font></a></strong></h1>
<nav id="nav">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="people.html">People</a></li>
<li><a href="https://www.csail.mit.edu/research/clinical-decision-making-group#projects" target="_blank">Projects</a></li>
<li><a href="publications.html">Publications</a></li>
<li><a href="blogs.html">Blogs</a></li>
<li><a href="seminars.html">Seminars</a></li>
<li><a href="faq.html">FAQs</a></li>
<li><a href="https://groups.csail.mit.edu/medg/index_archive.html" target="_blank">Archive</a></li>
</ul>
</nav>
</header>
<a href="#menu" class="navPanelToggle"><span class="fa fa-bars"></span></a>
<!-- Main -->
<section id="main" class="wrapper">
<div class="container">
<header class="major special">
<h2>Pete's Birthday Conference!</h2>
</header>
</div>
<div class="container">
<section>
<div id="md_content"></div>
<script>
var body_location = 'docs/pete70.md';
var conv = new showdown.Converter({tables: true});
function getText(myUrl){
var result = null;
$.ajax( { url: myUrl,
type: 'get',
dataType: 'html',
async: false,
success: function(data) { result = data; }
}
);
FileReady = true;
return result;
}
var markdown_source = getText(body_location);
var output = conv.makeHtml( markdown_source );
document.getElementById('md_content').innerHTML = output;
</script>
</section>
</div>
</section>
<!-- Footer -->
<footer id="footer">
<div class="container">
<ul class="copyright">
<li>© MIT CSAIL Medical Decision Making Group</li>
<li><a href="https://accessibility.mit.edu/">Accessibility</a></li>
<li><a href="http://templated.co">templated.co</a></li>
</ul>
</div>
</footer>
</body>
</html>