-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
111 lines (105 loc) · 5.46 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Parima Shah Portfolio</title>
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700|Lekton:400,700" rel="stylesheet">
<link href="css/pure.min.css" rel="stylesheet">
<!--[if lte IE 8]>
<link rel="stylesheet" href="css/pure-grid-responsive-old-ie.min.css">
<![endif]-->
<!--[if gt IE 8]><!-->
<link rel="stylesheet" href="css/pure-grid-responsive.min.css">
<!--<![endif]-->
<link href="assets/style.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div id = "layout">
<div id = "sort-options">
<div class = "sort-groups">
<div class = "sort-group">
<a id = "all-projects" ><h1>ALL PROJECTS</h1></a>
</div>
<div class = "sort-group skill-set">
<h1>Skill Set</h1>
<ul id = "skill-set-list">
<a id="full-stack-dev" class="filter-proj"><li>Full Stack Dev</li></a>
<a id="project-management" class="filter-proj"><li>Project Management</li></a>
<a id="mobile-application" class="filter-proj"><li>Mobile Application</li></a>
<a id="ui-design" class="filter-proj"><li>UI/Design</li></a>
<a id="cms" class="filter-proj"><li>CMS</li></a>
<a id="cloud" class="filter-proj"><li>Cloud</li></a>
</ul>
</div>
<div class = "sort-group industries">
<h1>Industries</h1>
<ul id = "industries-list">
<a id = "iot" class="filter-proj"><li>Internet of Things</li></a>
<a id="cybersecurity" class="filter-proj"><li>Cybersecurity</li></a>
<a id="non-profit" class="filter-proj"><li>Non Profit</li></a>
</ul>
</div>
</div>
</div>
<div id = "project-list"></div>
<div id = "project-timeline"></div>
<div id = "project-content">
<div class = "project-content-container">
</div>
</div>
</div><!-- end of layout -->
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/1.20.3/TweenMax.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/1.20.3/plugins/ScrollToPlugin.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/ScrollMagic/2.0.5/ScrollMagic.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/ScrollMagic/2.0.5/plugins/debug.addIndicators.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/ScrollMagic/2.0.2/plugins/animation.gsap.js"></script>
<!-- <script src = "js/handlebars-v4.0.11.js"></script> -->
<script src = "js/mustache.min.js"></script>
<script src = "js/lettering.min.js"></script>
<!-- <script src = "js/scrollMonitor.js"></script> -->
<script src = "js/workcase.js"></script>
<script src = "js/main_test.js"></script>
<!-- <script src="js/flowtype.js"></script> -->
<!-- Include all compiled plugins (below), or include individual files as needed -->
<!-- <script src="js/bootstrap.min.js"></script> -->
<script id = "project-list-template" type="text/x-tmpl-mustache">
{{#workCases}}
<a class = "project-timeline-link" href="#{{css_class}}" data-index = {{index}}>
<div class = "project-timeline-item" data-work-case={{css_class}}>
<div class = "project-index">{{idx}}</div>
<div class = "project-timeline-name"><span data-letters="{{name}}">{{name}}</span></div>
</div>
</a>
{{/workCases}}
</script>
<script id = "project-content-template" type="text/x-tmpl-mustache">
{{#workCases}}
<div id = {{css_class}} data-skill-set = "{{skill_set}}" data-industries = "{{industries}}"
data-index="{{index}}" class = "project-content-item {{class}} {{css_class}}">
<div class = "project-image-container">
<img src = {{image}} />
</div>
<div class = "project-content-item-container">
<div class = "type-of-project">{{type}}</div>
<div class = "project-title"><h1 class = "title">{{name}}<h1></div>
<div class = "role">
<span class="role-text"> ROLE </span> <span class = "the-role">{{role}}</span>
</div>
<div class = "subheading"><p>{{subheading}}</p></div>
</div>
</div>
{{/workCases}}
</script>
</body>
</html>