-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
96 lines (88 loc) · 3.47 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
94
95
96
<!DOCTYPE html>
<html lang="cn" ng-app="app">
<head>
<title>ZKH | Resume</title>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1.0,user-scalable=yes,minimum-scale=0.3">
<link href="public/css/style.css" rel="stylesheet" type="text/css">
<script src="public/js/jquery.min.js"></script>
<script src="public/js/angular.min.js"></script>
<script src="public/js/main.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','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-59997411-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<div id="container">
<!-- profile -->
<div ng-controller="profile">
<div class="live-wrapper">
<a class="live" href="http://www.zkh.im">{{live}}</a>
</div>
<img alt="gravatar" ng-src="{{gravatar}}"/>
<h1 class="contacts">
{{name}}
</h1>
<h3 class="contacts">
{{phone}} | <a href="mailto:{{email}}">{{email}}</a>
</h3>
<h3 class="contacts">
{{university}} | {{grade}} | {{major}}
<a ng-repeat="s in sns" class="sns" href="{{s.href}}">
<img alt="{{s.alt}}" ng-src="{{s.src}}" ng-click="s.dropdown = !s.dropdown"/>
<img class="dropdown" ng-if="s.dropdown" ng-src="{{s.second_image}}"/>
</a>
</h3>
</div>
<!-- experiences -->
<div ng-controller="experience">
<h2 class="title">{{experience}}</h2>
<div ng-repeat="e in experiences" class="experience">
<h3>{{e.company}} {{e.title}} <span class="duration">{{e.duration}}<span></h3>
</div>
</div>
<!-- projects -->
<div ng-controller="project">
<h2 class="title">{{project}}</h2>
<div ng-repeat="p in projects" class="projects">
<h3>{{p.title}} <span class="duration">{{p.duration}}</span></h3>
<p class="brief">{{p.brief}}</p>
<p class="detail">{{p.detail}}</p>
</div>
</div>
<!-- skill -->
<div ng-controller="skill">
<h2 class="title">{{skill}}</h2>
<div ng-repeat="(s, k) in skills" class="skills">
{{s}}: {{k}}
</div>
</div>
<!-- description -->
<!--<div ng-controller="description">-->
<!--<h2 class="title">{{description}}</h2>-->
<!--<p>{{brief}}</p>-->
<!--</div>-->
<!-- 多说评论框 start -->
<div class="ds-thread" data-thread-key="resume-index" data-title="resume" data-url=""></div>
<!-- 多说评论框 end -->
<!-- 多说公共JS代码 start (一个网页只需插入一次) -->
<script type="text/javascript">
var duoshuoQuery = {short_name:"zhengkenghong"};
(function() {
var ds = document.createElement('script');
ds.type = 'text/javascript';ds.async = true;
ds.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') + '//static.duoshuo.com/embed.js';
ds.charset = 'UTF-8';
(document.getElementsByTagName('head')[0]
|| document.getElementsByTagName('body')[0]).appendChild(ds);
})();
</script>
<!-- 多说公共JS代码 end -->
</div>
</body>
</html>