-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
156 lines (148 loc) · 5.47 KB
/
about.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
---
layout: default
section_id: about
milestones:
- from: 0
to: 52
title: Years of Machine Learning Experience
- from: 0
to: 41
title: Years of Medical Billing Experience
members:
- name: Dr. Sergey A. Razin, Ph.D.
position: CTO
desc:
A Professor of Artificial Intelligence and Entrepreneurial Engineering at the Harvard of the South, Sergey has extensive experience in the technology sector ranging from startups to major corporations.
avatar: images/sergey.jpg
socials:
- icon_class: fa fa-linkedin-square
url: https://linkedin.com/in/sergeyrazin
- name: Dr. Jack Neil, MD
position: CEO
desc:
A board certified pediatric anesthesiologist with a Bachelor's in Computer Information Systems, Jack is a startup veteran with extensive connections in tech, entrepreneurial, and medical circles.
avatar: images/jack.jpg
socials:
- icon_class: fa fa-linkedin-square
url: https://linkedin.com/in/jackneil
- name: Sam Hartzog
position: COO
desc:
A senior process control systems engineer with a Bachelor’s in Chemical Engineering, Sam is the enterprise expert for industrial machine learning at one of the largest brewers in the US.
avatar: images/sam.jpg
socials:
- icon_class: fa fa-linkedin-square
url: https://linkedin.com/in/samuelhartzog
clients:
- name: Travis Goldie
pic: images/travis.jpg
url: http://beeryardtech.github.io
icon_class: fa fa-github
position: User Interface and Experience
- name: Hasani X
pic: images/hasani.jpg
url: https://leadyourstory.com
icon_class: fa fa-github
position: Branding and Marketing
- name: Tracy Marlatt
pic: images/tracy.jpg
url: https://github.io/ashenfael
icon_class: fa fa-github
position: Data Operations
- name: Scott Thoman
pic: images/scott.jpg
url: https://github.io/thorst
icon_class: fa fa-github
position: Servers and Integration
---
<div class='full'>
<div class='row'>
<div class='medium-6 large-6 columns'>
<h4 style='color: #999'>We are proud of...</h4>
<h2>Our team</h2>
<div class='spacing'></div>
<p>Our core team constitutes over 50 years of machine learning experience and over 40 years of medical billing experience. With two licensed physicians, a professor of AI and Entrepreneurial Engineering, an experienced manufacturing systems engineer, and proven developers with domain expertise ranging from end user experience to hardcore back end data science, Hank is truly set for success for the long term. </p>
</div>
<div class='spacing two'></div>
{% for milestone in page.milestones %}
<div class='medium-3 large-3 columns right-border left-border' style='padding-top: 15px;'>
<div class='mod modMilestone no-icon'>
<strong data-from='{{milestone.from}}' data-to='{{milestone.to}}'> </strong>
<span>{{milestone.title}}</span>
<div class='spacing'></div>
</div>
</div>
{% endfor %}
</div>
<div class='three spacing'></div>
</div>
<img src='images/whitewedgeleft.png' style="position: absolute; width: 100%; height: 74px; overflow: hidden; padding-top: -50px;" />
<div class='full' style='background: #f5f5f5'>
<div class='row'>
<div class='large-12 columns'>
<h3>Our Founders</h3>
<div class='spacing'></div>
</div>
</div>
<div class='row'>
{% for member in page.members %}
<div class='small-6 medium-4 large-4 columns'>
<div class='mod modTeamMember style-2' >
<div class='member'>
<img class="avatar" alt="" src="{{site.url}}/{{member.avatar}}" />
<div class='overlay'>
<ul class='socials'>
{% for social in member.socials %}
<li>
<a href='{{social.url}}'>
<i class='{{social.icon_class}}'></i>
</a>
</li>
{% endfor %}
</ul>
</div>
</div>
<h3 class='membername'>{{member.name}}</h3>
<p class='position'>{{member.position}}</p>
<p class='memberdesc' style='min-height:200px'>{{member.desc}}</p>
</div>
</div>
{% endfor %}
</div>
<div class='three spacing'></div>
<div class='row'>
<div class='large-12 columns'>
<h3>Our Startup Team (The Real Brains)</h3>
<div class='spacing'></div>
</div>
</div>
</div>
<div class='full parallax' style='background-image: url(../images/key.jpg); color: #fff; overflow: hidden;'>
<div class='row'>
<div class='large-12 columns'>
<div class='mod modClients' data-slides_to_show='3'>
<div class='clients'>
{% for client in page.clients %}
<div class='mod modTeamMember style-2' style='padding: 5px;' >
<div class='member'>
<img class="avatar" alt="" src="{{site.url}}/{{client.pic}}" />
<div class='overlay'>
<ul class='socials'>
<li>
<!--a href='{{client.url}}'>
<i class='{{client.icon_class}}'></i>
</a-->
<h3>{{client.name}}</h3>
<h5>{{client.position}}</h5>
</li>
</ul>
</div>
</div>
</div>
{% endfor %}
</div>
<div class='two spacing'></div>
</div>
</div>
</div>
</div>