-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathprofile.template
114 lines (100 loc) · 3.58 KB
/
profile.template
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimal-ui">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>{{profile.name}}</title>
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css" rel="stylesheet">
<style type="text/css">
{{{css}}}
</style>
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script type='text/javascript' src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.2/html5shiv-printshiv.min.js"></script>
<script type='text/javascript' src="https://cdnjs.cloudflare.com/ajax/libs/respond.js/1.4.2/respond.min.js"></script>
<link href="//netdna.bootstrapcdn.com/respond-proxy.html" id="respond-proxy" rel="respond-proxy">
<link href="/respond.proxy.gif" id="respond-redirect" rel="respond-redirect">
<script type='text/javascript' src="/respond.proxy.js"></script>
<![endif]-->
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col-md-3 col-xs-12 sidebar">
<div class="photo">
<img width="230" height="230" src="{{profile.about.photo_url}}">
</div>
<h4>{{profile.about.name}}</h4>
<span class="title">{{profile.about.title}}</span>
<p class="passion">{{profile.about.passion}}</p>
<div class="skills">
<h3>Skills</h3>
<ul class="list-unstyled">
{{#each profile.skills}}
<li>{{this.name}}</li>
{{/each}}
</ul>
</div>
<footer class="sidebar-footer">
<section class="links">
<ul class="list-inline">
{{#each profile.network}}
<li>
<a href="{{this.url}}" title="{{this.type}}">
<i class="fa {{logo this.type}}"></i>
</a>
</li>
{{/each}}
</ul>
</section>
{{#if profile.links.pdf}}
<small>
<a href="{{profile.links.pdf}}">Download Printable Version</a>
</small>
{{/if}}
</footer>
</div>
<div class="col-md-9 col-xs-12 main-content">
<div class="well">
<div class="text-right">
<a class="logo" target="_blank" href="http://precise.io">
PRECISE
</a>
</div>
<p class="bio">{{profile.about.bio}}</p>
<h3>Job Experience</h3>
{{#each profile.experience}}
<div class="row">
<div class="col-md-3 period">
{{this.period}}
</div>
<div class="col-md-9">
<h4>
{{this.place}}
<small>{{this.role}}</small>
</h4>
<p>{{{md this.description}}}</p>
</div>
</div>
{{/each}}
<h3>Education</h3>
{{#each profile.education}}
<div class="row">
<div class="col-md-3 period">
{{this.period}}
</div>
<div class="col-md-9">
<h4>
{{this.place}}
</h4>
<p>{{{md this.description}}}</p>
</div>
</div>
{{/each}}
</div>
</div>
</div>
</div>
</body>
</html>