forked from srbartlett/precise-theme-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.template
102 lines (92 loc) · 4.25 KB
/
portfolio.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
<!DOCTYPE html>
<!--[if IE 8]> <html lang="en" class="ie8"> <![endif]-->
<!--[if IE 9]> <html lang="en" class="ie9"> <![endif]-->
<!--[if !IE]><!--> <html lang="en"> <!--<![endif]-->
<head>
<title>{{portfolio.name}}</title>
<!-- Meta -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Precise Portfolio for {{portfolio.name}}">
<meta name="author" content="Precise.io">
<link href='https://fonts.googleapis.com/css?family=Lato:300,400,300italic,400italic' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Montserrat:400,700' rel='stylesheet' type='text/css'>
<!-- Global CSS -->
<link rel="stylesheet" href="https://static.precise.io/precise-theme-starter/assets/plugins/bootstrap/css/bootstrap-no-print.min.css">
<!-- Plugins CSS -->
<link rel="stylesheet" href="https://static.precise.io/precise-theme-starter/assets/plugins/font-awesome/css/font-awesome.css">
<!-- Theme CSS -->
<style type="text/css">
{{{css}}}
</style>
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<header class="header">
<div class="container">
<div class="logo img-responsive pull-right"></div>
<div class="row">
<div class="primary col-md-6 col-sm-6 col-xs-6">
<div class="profile-content pull-left">
<h1 class="name">{{portfolio.name}}</h1>
<p class="desc">{{portfolio.comment}}</p>
</div>
</div>
{{#if (showTracks portfolio)}}
<div class="profile-content col-md-6 col-sm-6 col-xs-6">
<div id="tracks" data-tracks='{{{tracks portfolio}}}' style="width: 400px; height: 275px;"></div>
<p class="desc">
{{portfolio.tracks.comment}}
</p>
</div>
{{/if}}
</div>
</div>
</header>
<div class="container sections-wrapper">
<div class="row">
<div class="primary col-md-12 col-sm-12 col-xs-12">
<section class="snapshots section">
<div class="section-inner">
<div class="row">
{{#each portfolio.snapshots}}
<a href="http://{{domain}}{{path}}">
<div class="col-sm-12 col-md-3 text-center profile">
<div class="text-center center">
<div class="photo">
<img width="230" height="230" class="photo img-circle img-responsive" src="{{this.profile.about.photo_url}}">
</div>
<h4>{{this.profile.about.name}}</h4>
<h3>{{this.profile.about.title}}</h3>
<p>{{{truncate this.profile.about.passion 120}}}</p>
</div>
</div>
</a>
{{/each}}
</div>
</div>
</section>
</div>
</div>
</div>
</div>
<footer class="footer">
<div class="container text-center">
<small class="copyright"><a href="https://cevo.com.au/" target="_blank">Cevo</a></small>
</div>
</footer>
<!-- Javascript -->
<script type="text/javascript" src="https://static.precise.io/precise-theme-starter/assets/plugins/jquery-1.11.3.min.js"></script>
<script type="text/javascript" src="https://static.precise.io/precise-theme-starter/assets/plugins/bootstrap/js/bootstrap.min.js"></script>
<script type="text/javascript" src="https://static.precise.io/precise-theme-starter/assets/plugins/precise-tracks-0.1.0.min.js"></script>
<!-- custom js -->
<script type="text/javascript">
{{{js}}}
</script>
</body>
</html>