-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (61 loc) · 3.08 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
<!DOCTYPE html>
<html>
<head>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" />
<link rel="stylesheet" href="css/style.css" />
<!--[if lt IE 8]>
<link href="stylesheets/ie.css" rel="stylesheet" />
<![endif]-->
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon"/>
<link rel="icon" href="images/favicon.ico" type="image/x-icon">
<title>sekkithub</title>
</head>
<body>
<div id="wrapper">
<div id="frame"></div>
<div class="contents">
<h1>Hi, I'm Masato Seki</h1>
<p>I'm a web developer, Javascript fancier.<br />
From Tokyo and currently based in London.<br />
I also create interactive stuff.<br />
Here is my <a href="javascript:void(0)" id="projects" class="active">projects</a>.<br />
You can also find me on <a href="https://twitter.com/sekkithub" class="active" target="_blank">twitter</a>
or <a href="https://github.com/sekkithub" class="active" target="_blank">GitHub</a>.<br />
I really appreciate all the messages I received.<br />
Drop me a line from <a href="mailto:sekkithub@gmail.com" class="active">here</a>.</p>
</div>
</div>
<div id="projectsWrapper">
<div id="projectsFrame">
<h3>Projects</h3>
<div id="close">
<a class="btnClose">
<span class="line"></span>
<span class="line"></span>
</a>
</div>
<div class="projectsContents" ng-app ng-controller="ProjectsCtrl">
<ul>
<li ng-repeat="project in projects" ng-bind-html-unsafe="getContent(project)"></li>
</ul>
</div>
<div id="copyRight">© <span class="year"></span> sekkithub</div>
</div>
</div>
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/angularjs/1.0.7/angular.min.js"></script>
<script type="text/javascript" src="//code.jquery.com/jquery-2.1.0.min.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<script type="text/javascript" src="js/projects.js"></script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-45171081-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>