-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
93 lines (84 loc) · 4.39 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
87
88
89
90
91
92
93
<!doctype html>
<!-- paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/ -->
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
<!-- Consider adding a manifest.appcache: h5bp.com/d/Offline -->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>David Kaneda</title>
<meta name="description" content="">
<meta name="author" content="David Kaneda">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" href="/css/dk.css">
<!-- More ideas for your <head> here: h5bp.com/d/head-Tips -->
<script type="text/javascript" src="http://use.typekit.com/aox1bty.js"></script>
<script src="/js/libs/modernizr-2.0.6.min.js"></script>
<script type="text/javascript">try{Typekit.load();}catch(e){}</script>
</head>
<body>
<div role="main" id="content">
<header id="page-header">
<a href="/"><img src="/img/head.png"></a>
<nav>
<ul>
<li><a id="nav-home" href="/">DK</a></li>
<li><a id="nav-work" href="/work/">Work</a></li>
<li><a id="nav-presentations" href="/presentations/">Presentations</a></li>
</ul>
</nav>
</header>
<div id="home">
<h1>Hi, I’m Dave. I design and build <a rel="internal" href="/work/">engaging experiences</a> using web technology.</h1>
<h2>I am currently the creative director at <a rel="internal" href="/work/sencha">Sencha</a>, where we make frameworks and tools for web developers.</h2>
<p><a href="https://twitter.com/davidkaneda" class="twitter-follow-button" data-width="150">Follow @davidkaneda</a></p>
</div>
<div id="work">
<h1>Work</h1>
</div>
<div id="presentations">
<h1>Presentations</h1>
<img class="preso-banner" src="/img/speaking.jpg">
<p>I occassionally <a href="http://lanyrd.com/profile/davidkaneda/">speak at conferences</a> about Sencha Touch, HTML5, CSS3, mobile app strategy, and design. If you are interested in having me speak at your event, <a href="#">drop me a line</a>.</p>
</div>
<div id="home-photo">
<img src="/img/avatar.png">
</div>
<nav class="social">
<ul>
<li><a title="Twitter" class="social-twitter" href="https://twitter.com/davidkaneda">Twitter</a></li>
<li><a title="Facebook" class="social-facebook" href="https://facebook.com/dkaneda">Facebook</a></li>
<li><a title="Tumblr" class="social-tumblr" href="http://9-bits.com">Tumblr</a></li>
<li><a title="LinkedIn" class="social-linkedin" href="http://www.linkedin.com/in/dkaneda">LinkedIn</a></li>
<li><a title="Github" class="social-github" href="https://github.com/davidkaneda">Github</a></li>
<li><a title="Google+" class="social-googleplus" href="https://plus.google.com/100438603620914963861">Google+</a></li>
</ul>
</nav>
</div>
<!-- JavaScript at the bottom for fast page loading -->
<!-- scripts concatenated and minified via build script -->
<script defer src="/js/plugins.js"></script>
<!-- end scripts -->
<script src="/js/application.js"></script>
<script defer type="text/javascript" charset="utf-8">
var jQuery = require("jqueryify");
$(function(){
var App = require("index");
window.app = new App({el: $("body")});
});
</script>
<script>
var _gaq=[['_setAccount','UA-252194-10'],['_trackPageview']];
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
g.src=('https:'==location.protocol?'//ssl':'//www')+'.google-analytics.com/ga.js';
s.parentNode.insertBefore(g,s)}(document,'script'));
</script>
<!--[if lt IE 7 ]>
<script defer src="//ajax.googleapis.com/ajax/libs/chrome-frame/1.0.3/CFInstall.min.js"></script>
<script defer>window.attachEvent('onload',function(){CFInstall.check({mode:'overlay'})})</script>
<![endif]-->
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
</body>
</html>