-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
86 lines (81 loc) · 3.24 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<style>
body, html{
height:100%;
padding:0;
margin:0;
}
#cover {
background-image: url("assets/john.thomson.jpg");
min-height: 100%;
background-repeat: no-repeat;
background-attachment: fixed;
background-position: left;
background-size: cover;
padding-top: 100%;
}
#bio {
}
h2 {
font-size: 20px !important;
}
@media only screen and (max-width: 975px) {
#cover {
height: 600px;
margin-top: -180px;
background-attachment: scroll !important;
}
#cover img {
width: 100%;
height: auto;
}
}
</style>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>John Thomson</title>
<!-- Bootstrap -->
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col-md-8">
<div id="cover"></div>
</div>
<div class="col-md-4">
<div id="bio" class="h-card">
<h1 class="p-name u-url"><a href="http://johnthomson.org" rel="me">John Thomson</a></h1>
<h2 class="p-note">Instructional Technology Lead, <br/>Stanford Graduate School of Business</h2>
<p>By day, I'm the Instructional Technology Lead at the Stanford Graduate School of Business where I work to develop and execute their vision for a comprehensive learning environment.</p>
<p>By night, I play violin and shoot kyudo (Japanese archery).
<p>Being a geek, I'm not afraid of the command line or a custom Android ROM. Being a "connector," I thrive by engaging campus and open source communities.</p>
<p>I slogged my way through a PhD in Journalism & Mass Communication with a fun topic -- copyright and social theory.</p>
<p><a href="cv/index.html">CV</a> | <a href="blog-archive.html">Blog Archive</a> | <a href="https://twitter.com/jcthomsonjr" rel="me">Twitter</a> | <a href="https://www.linkedin.com/in/jcthomsonjr" rel="me">LinkedIn</a> | <a href="https://plus.google.com/u/0/+JohnThomsonJr/">+</a> | <a href="https://profiles.stanford.edu/john-thomson" rel="me">Contact</a></p>
</div>
</div>
</div>
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-10953651-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>