-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
166 lines (160 loc) · 5.84 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
157
158
159
160
161
162
163
164
165
166
---
layout: default
section_id: about
skills:
- title: Certified Personal Trainer, National Academy of Sports Medicine
- title: Group Fitness Instructor, Athletics & Fitness Association of America
- title: The Science of Functional Aging, IDEA Health & Fitness Association
- title: Master of Science, Human Resource Management, Copenhagen Business School
- title: Bachelor of Arts, International Business & Modern Languages, University of Southern Denmark
testimonials:
- text: 'Reprehenderit eos et non et ut eum reprehenderit quis sequi quia vel repellendus id. Velit quit blanditiis dolor quam error eos dolores sequi eaque rerum est. Velit quit blanditiis dolor quam error eos dolores sequi eaque rerum est.'
author: David White
position: Designer at Huglab
avatar: images/@stock/author-avatar-1.png
- text: 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat consectetuer sit amet magna adipiscing.'
author: David White
position: Designer at Huglab
avatar: images/@stock/author-avatar-2.png
- text: 'Reprehenderit eos et non et ut eum reprehenderit quis sequi quia vel repellendus id. Velit quit blanditiis dolor quam error eos dolores sequi eaque rerum est. Velit quit blanditiis dolor quam error eos dolores sequi eaque rerum est.'
author: David White
position: Designer at Huglab
avatar: images/@stock/author-avatar-3.png
members:
- name: Katrina Faye Jackson
position: founder and lead trainer
desc: Certified Personal Trainer, National Academy Of Sports Medicine. I founded UP4MOVEMENT to help others improve their strength and health. I customize training programs to fit my clients' needs, help them overcome barriers and ensure that they reach their goals.
avatar: images/about_page/katrina.jpg
- name: Christopher McHugh
position: Trainer
desc: Certified Personal Trainer, National Academy Of Sports Medicine. I overcame a history of injuries, setbacks and obesity to become a trainer, and I rely on this experience to ensure that all my clients transform their lives as well.
avatar: images/about_page/chris.jpg
- name:
position:
desc:
avatar:
- name:
position:
desc:
avatar:
---
<div class="full">
<div class="row">
<div class="large-12 columns">
<h2>History & Mission</h2>
<h4 style="color: #999">
Hi, I'm Katrina, founder of UP4MOVEMENT!
</h4>
<!-- <div class="spacing"></div> -->
<p>
I grew up in Denmark with a Danish mother and an American
father, and have had the privilege to live, work and travel
abroad for most of my life before settling in Michigan City,
Indiana. My experiences eventually guided me towards my
ultimate purpose and what I love the most - helping others
unlock their potential to accomplish great(er!) things through
healthier lifestyles.
</p>
<p>
Nothing energizes me more than movement and helping others
improve their health to be at their best, through all aspects
and stages of life – which is exactly the mission of the
company.
</p>
</div>
</div>
<!-- <div class="spacing"></div> -->
</div>
<div class="full" style="background: #f5f5f5; padding: 40px 0 0">
<div class="row">
<div class="large-12 columns">
<h3>
<u style="text-decoration-thickness: 0.12rem"
>Certifications & education</u
>
</h3>
<div class="spacing"></div>
<ul class="bars">
{% for skill in page.skills %}
<li>
<h4 style="text-transform: capitalize">
{{skill.title}}
<strong>{{skill.percent}}</strong>
</h4>
<p class="highlighted" data-percent="{{skill.percent}}"></p>
</li>
{% endfor %}
</ul>
</div>
<!-- TESTIMONIALS -->
<!-- <div class="medium-6 columns">
<h3>The testimonials</h3>
<div class="mod modTestimonials simple">
<div class="row">
<div class="small-12 columns">
<div class="items">
{% for t in page.testimonials %}
<div class="item">
<p class="quote">{{t.text}}</p>
<div class="author">
<p class="author-avatar">
<img alt="" src="{{t.avatar}}" />
</p>
<p class="author-name">
-
<strong>
{{t.author}}
</strong>
, {{t.position}}
</p>
</div>
</div>
{% endfor %}
</div>
</div>
</div>
</div>
</div> -->
</div>
<div class="two spacing"></div>
</div>
<!-- TEAM section -->
<div class="full">
<div class="row">
<div class="large-12 columns">
<h3>Our team</h3>
<div class="spacing"></div>
</div>
</div>
<div class="row">
{% for member in page.members %}
<div class="small-6 medium-3 large-3 columns">
<div class="mod modTeamMember style-2">
<div class="member">
<img
class="avatar"
alt=""
src="{{site.url}}/{{member.avatar}}"
/>
<div>
<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>{{member.name}}</h3>
<p class="position">{{member.position}}</p>
<p>{{member.desc}}</p>
<div class="two spacing"></div>
</div>
</div>
{% endfor %}
</div>
<div class="three spacing"></div>
</div>