-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (65 loc) · 2.04 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
---
title: Scott Harrington - Shopify Plus Sr. Engineer
layout: default
client_work_section: sections/content-image-media.html
client_banner_section: sections/banner.html
---
<section
class="section--panel"
style="background-image: url('/assets/images/hero.jpg');"
>
<div class="container">
<div class="row">
<div class="col-md-8">
<div class="d-flex flex-column justify-content-end bg-vh-full py-5">
<h1 class="display-2 text-white">Scott Harrington</h1>
<h2 class="text-white">
Freelance Shopify CTO + Sr. Shopify Engineer
</h2>
<p class="text-white">Los Angeles, CA</p>
</div>
</div>
</div>
</div>
</section>
<section class="bg-vh-full pt-5 pt-lg-8 pb-5 pb-lg-8">
<div class="container">
<div class="row">
<div
data-aos="fade-up" data-aos-delay="200" data-aos-duration="600"
class="col-12 col-md-offset-2 col-md-4">
<h2 class="mt-2">Shopify & Shopify Plus</h2>
<p>Lead Developer</p>
<p><i>2014 - 2021</i></p>
</div>
<div
class="col-12 col-md-6 pt-2" data-aos="fade-up" data-aos-delay="300" data-aos-duration="500">
<ul class="list-unstyled">
{% for project in site.data.projects %}
<li>
<h2><a href="#{{ project.id }}" class="text-decoration-none">{{ project.name }}</a></h2>
</li>
{% endfor %}
{% for project in site.data.old-projects %}
<li>
<h2>
{{ project.name }}
</h2>
</li>
{% endfor %}
</ul>
</div>
</div>
</div>
</section>
{% for project in site.data.projects %}
{% if page.client_work_section %}
{% if project.layout == 'banner'%}
{% include {{ page.client_banner_section }} %}
{% else %}
{% capture layout_justify %}{{ project.layout_justify }}{% endcapture %}
{% include {{ page.client_work_section }} layout=layout_justify %}
{% endif %}
{% endif %}
{% endfor %}
{% include sections/contact.html %}