-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (74 loc) · 3.05 KB
/
index.html
File metadata and controls
81 lines (74 loc) · 3.05 KB
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
<!--
Everything here is public domain unless otherwise noted.
-->
<html>
<head>
<title>Nat's Home Page</title>
<link rel="stylesheet" type="text/css" href="main.css">
<script language="JavaScript">
function get_random_photo () {
var photos = ["limantour", "turkey", "view_lbl4", "pescadero",
"armstrong", "lost_coast2", "view_tilden1", "view_lbl4",
"trinity_waterfall", "trinity_lake", "trinity_canyon",
"turkey2", "tahoe_small", "chipmunk_small", "wunderlich",
"needles_small", "sequoia_foothills_small"];
var captions = [
"Limantour Beach, Point Reyes National Seashore (2003)",
"Turkeys at Berkeley Lab (2008)",
"SF Bay at sunset, view from Berkeley Lab (2009)",
"Pescadero State Beach on Route 1 (2008)",
"Armstrong Redwoods State Park, Sonoma County (2008)",
"The Lost Coast, Mendocino County (2008)",
"North SF Bay, view from Tilden Park (2010)",
"Berkeley and Oakland, view from Berkeley Lab (2010)",
"Trinity Alps, Shasta-Trinity National Forest (2009)",
"Lower Canyon Creek Lake, Trinity Alps, Shasta-Trinity National Forest (2009)",
"Trinity alps, Shasta-Trinity National Forest (2009)",
"Male turkey at Berkeley Lab (2012)",
"Lake Tahoe from the southeast (2010)",
"Chipmunk (near Lake Tahoe) (2010)",
"SF Bay, view from Wunderlich Park (San Mateo County) (2019)",
"The Needles, Sequoia National Forest (2020)",
"Sierra Nevada Foothills, view west from Sequoia National Forest (2020)"
];
var i = Math.round(Math.random() * (photos.length - 1));
return {"src": "images/" + photos[i] + ".jpg", "alt": captions[i]};
}
function onClick() {
var imgElem = document.getElementById("main_image");
var imgInfo = get_random_photo();
imgElem.src = imgInfo["src"];
imgElem.alt = imgInfo["alt"];
}
function check_for_google () {
if (document.referrer.match(/google/) && document.referrer.match(/echols/)) {
document.write('<!-- did you just google me? -->\n')
}
}
</script>
</head>
<body bgcolor="black">
<center>
<div class="narrow">
<h4>The official Nat Echols home page</h4>
<script language="JavaScript">
check_for_google();
</script>
<img id="main_image" src="images/wunderlich.jpg" alt="Wunderlich Park and the Bay, 2019" onclick="onClick()"/>
<p><a href="http://www.pacb.com">Current work</a></p>
<p><a href="http://cci.lbl.gov">Previous work</a></p>
<p><a href="https://www.linkedin.com/in/nat-e-27b63842/">LinkedIn</a></p>
<p><a href="http://github.com/natechols">GitHub</a></p>
<p><a href="https://www.ncbi.nlm.nih.gov/pubmed/?term=echols+n">PubMed</a></p>
<br>
<br>
<br>
<p><font class="note"><a href="http://natechols.github.io/xtal.js/map_viewer.html">Molecular Graphics for X-ray Crystallography (2014)</a></font></p>
<p><font class="note"><a href="http://natechols.github.io/pandemic-arcade/">Pandemic Arcade Gallery (2020)</a></font></p>
<p><font class="note"><a href="orchestras.html">List of Bay Area community orchestras</a></font></p>
<script language="JavaScript">
</script>
<!-- <p>Nothing else to see here yet. . . sorry.</p> -->
</center>
</body>
</html>