-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
121 lines (97 loc) · 4.23 KB
/
index.html
File metadata and controls
121 lines (97 loc) · 4.23 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<!--[if (lt IE 9) ]> <html lang="en" class="no-js oldie"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!--> <html lang="en" class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8" />
<title>Portfolio | lukehler</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="/style.min.css" />
<script>
// Toggle on the .js class if javascript is available
var html=document.getElementsByTagName('html').item(0); // There can be only one.
html.classList.remove('no-js');
html.classList.add('js');
// Note that the html variable is available for further javascript as well.
</script>
</head>
<body class="front portfolio">
<a id="top" href="#main-content" class="skip-link">Skip to main content</a>
<header id="site-header" role="banner">
<div class="header-inner">
<h1 id="site-identifier"><a href="/">lukehler</a></h1>
<nav role="navigation">
<ul>
<li><a href="/" class="active">portfolio</a>
<li><a href="/cv">c.v.</a>
<li><a href="#contact">contact</a>
</ul>
</nav>
</div>
</header>
<address role="contentinfo" id="contact">
<div class="wrapper">
<a href="mailto:luke@witwat.net">email</a>
<a href="https://github.com/lukehler" target="_blank" rel="noreferrer noopener">github</a>
</div>
</address>
<main id="main-content" role="main">
<div class="wrapper">
<h1 id="page-title">Portfolio</h1>
<section class="content-section first">
<h2>Just a few sample projects.</h2>
<ul>
<li><a href="/gordon">Gordon Brothers</a></li>
<li><a href="/jem">J.E.M.</a></li>
<li><a href="/ls">Lootstrap</a></li>
<li><a href="/nano">MIT.nano</a></li>
<li><a href="/mitmuseum">MIT Museum</a></li>
<li><a href="/ccis">Northeastern University College of Computer & Information Science</a></li>
<li><a href="/skinner">Skinner Auctioneers</a></li>
<li><a href="/slc">Sarah Lawrence College</a></li>
</ul>
</section>
<section class="content-section">
<h2>I've worked or consulted with a number of other organizations over the years, including…</h2>
<ul>
<li><a href="https://www.abramscapital.com/">Abrams Capital Investments</a></li>
<li><a href="http://15years.bridgespan.org/">Bridgespan Group</a></li>
<li><a href="http://www.celebrityseries.org/">Celebrity Series of Boston</a></li>
<li><a href="https://chorusamerica.org">Chorus America</a></li>
<li><a href="http://global.mit.edu">Global MIT</a></li>
<li><a href="http://gsas.harvard.edu">Harvard Graduate School of Arts and Sciences</a></li>
<li><a href="http://hmnh.harvard.edu">Harvard Museum of Natural History</a></li>
<li><a href="http://neurodiscovery.harvard.edu">Harvard NeuroDiscovery Center</a></li>
<li><a href="http://www.americanorchestras.org">League of American Orchestras</a></li>
<li><a href="http://mcgovern.mit.edu">McGovern Institute for Brain Research at MIT</a></li>
<li><a href="http://web.mit.edu/2030/">MIT 2030</a></li>
<li><a href="http://capitalprojects.mit.edu/">MIT Capital Projects</a></li>
<li><a href="http://www.mountida.edu">Mount Ida College</a></li>
<li><a href="http://www.nfpa.org/">National Fire Protection Agency</a></li>
<li><a href="https://neponset.org">Neponset River Watershed Association</a></li>
<li><a href="https://newamericanpaintings.com">New American Paintings</a></li>
<li><a href="http://nedevelopment.com">New England Development</a></li>
<li><a href="https://meet.olin.edu">Olin College of Engineering</a></li>
<li><a href="http://www.projectbread.org/">Project Bread / Walk for Hunger</a></li>
<li><a href="https://www.paam.org/">Provincetown Art Association Museum</a></li>
<li><a href="https://www.suffolk.org">Suffolk University</a></li>
<li><a href="http://vcfa.edu">Vermont College of Fine Arts</a></li>
<li><a href="https://www.wellington.com">Wellington Management</a></li>
</ul>
</section>
</div>
</main>
<footer id="site-footer">
<p>© 2017
</footer>
<script id="project-template" type="template">
<a class="project {{ category }}" href="{{ path }}" style="{{ color }}">
{{ image }}
<h2>{{ title }}</h2>
</a>
</script>
<script src="/script.min.js"></script>
<!-- remove livereload line for delivery!
<script src="//localhost:2112/livereload.js"></script> -->
</body>
</html>