-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodal.php
55 lines (52 loc) · 2.6 KB
/
modal.php
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
<!-- partners modal -->
<div class="modal fade" id="partnersModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title" id="myModalLabel">PARTNERS</h4>
</div>
<div class="modal-body">
<div class="row">
<div class="col-md-4">
<img src="img/partners-1.jpg">
</div>
<div class="col-md-4">
<img src="img/partners-2.jpg">
</div>
<div class="col-md-4">
<img src="img/partners-3.jpg">
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- witherspoon modal -->
<div class="modal fade team-modal" id="witherspoonModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
</div>
<div class="modal-body">
<div class="row">
<div class="col-md-8">
<div class="headshot"><img src="../img/witherspoon-color.jpg"></div>
<h4>Mike Witherspoon - Solution Architect and Cofounder</h4>
<p>Based in San Francisco, Mike is a certified Force.com consultant who makes a sport of tackling the hard problems and determining the best possible solutions. After twelve years of improving business processes for a broad client list, Mike likes to say that he’s earned one of the most practical MBAs in the world. Prior to forming CodeScience, Mike was an Account Executive and Project Manager at Bluewolf for three years. Earlier in his career, he was a Business Analyst at Searchspace Corp implementing transaction analytics systems for large banks, plus a utility sector Technology Consultant at PricewaterhouseCoopers Consulting. Mike earned his Bachelors and Masters of Science from Virginia Tech in Civil Engineering. While not leading the charge at CodeScience, Mike practices yoga, dives in tropical waters, and indulges his penchant for haberdashery.</p>
</div>
<div class="col-md-4">
<img src="../img/witherspoon-group.jpg" class="group">
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>