-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmobile.html
116 lines (106 loc) · 4.76 KB
/
mobile.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>AS Home</title>
<!-- build:css css/mobile.css-->
<link rel="stylesheet" href="css/mobile.css">
<link rel="stylesheet" href="css/idangerous.swiper.css">
<!-- /build -->
</head>
<body>
<div class="preload">
<img src="img/p/bcg_slide-1.jpg">
<img src="img/p/bcg_slide-2.jpg">
<img src="img/p/bcg_slide-3.jpg">
<img src="img/p/bcg_slide-4.jpg">
<img src="img/p/bcg_slide-5.jpg">
<img src="img/p/bcg_slide-6.jpg">
<img src="img/p/bcg_slide-7.jpg">
<img src="img/p/bcg_slide-8.jpg">
<img src="img/l/bcg_slide-1.jpg">
<img src="img/l/bcg_slide-2.jpg">
<img src="img/l/bcg_slide-3.jpg">
<img src="img/l/bcg_slide-4.jpg">
<img src="img/l/pbcg_slide-5.jpg">
<img src="img/l/bcg_slide-6.jpg">
<img src="img/l/bcg_slide-7.jpg">
<img src="img/l/bcg_slide-8.jpg">
</div>
<div class="swiper-container">
<div class="swiper-wrapper">
<div class="swiper-slide slide-1">
<div class="title">Hi! My name is Andrew Scheuermann and I'm a fullstack software engineer.
<span class="underline">Swipe right to see my story</span>
</div>
</div>
<div class="swiper-slide slide-2">
<div class="title">Undergrad in Management Strategy at BYU's Marriott School of Management</div>
</div>
<div class="swiper-slide slide-3">
<div class="title">Worked at the University Impact Fund in Salt Lake City for 1.5 years</div>
</div>
<div class="swiper-slide slide-4">
<div class="title">Consulted small businesses in Nairobi, Kenya for three months with Village Capital</div>
</div>
<div class="swiper-slide slide-5">
<div class="title">Helped build Soko ('Etsy for Africa') as their Director of Finance & Strategy for one year</div>
</div>
<div class="swiper-slide slide-6">
<div class="title">Went on a career spirit journey and fell in love with programming and San Francisco</div>
</div>
<div class="swiper-slide slide-7">
<div class="title">Studied at Fullstack Academy, a Javascript focused bootcamp in NYC</div>
</div>
<div class="swiper-slide slide-8">
<div class="title column-two">I'm looking for a seat on a rocket ship! I'm a hard worker, creative, and passionate about programming. Let's build something together!</div>
<div class="portfolio">
<div class="column-left">
<ul>
<span class="underline">Social</span>
<li><a href="https://twitter.com/A_W_Scheuermann" target="_blank">Twitter</a>
</li>
<li><a href="https://github.com/andrewscheuermann" target="_blank">Github</a>
</li>
<li><a href="https://www.linkedin.com/in/scheuermann" target="_blank">LinkedIn</a>
</li>
<li><a href="https://medium.com/@A_W_Scheuermann" target="_blank">Blog</a>
<br>
</li>
<!-- <li><a href="mailto:[email protected]" target="_blank">Email</a>
</li> -->
</ul>
</div>
<div class="column-center">
<ul>
<span class="underline">Portfolio</span>
<li><a href="http://angelinsights.herokuapp.com/" target="_blank">Angel Insights</a>
</li>
<li><a href="https://github.com/andrewscheuermann/andrewscheuermann" target="_blank">This site</a>
</li>
<li><a href="https://github.com/andrewscheuermann/keychain-public" target="_blank">Keychain</a>
</li>
<li><a href="https://github.com/andrewscheuermann/portfolio-driven-development" target="_blank">PDD</a>
</li>
<!-- <li><a href="http://photo-voto.herokuapp.com/" target="_blank">Voto</a>
</li> -->
</ul>
</div>
<div class="column-right">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</div>
</div>
</div>
</div>
<div class="pagination"></div>
</div>
<!-- build:js js/mobile.js -->
<script src="js/jquery.min.js"></script>
<script src="js/idangerous.swiper.min.js"></script>
<!-- /build -->
<script type="text/javascript">
var mySwiper = new Swiper('.swiper-container', {
pagination: '.pagination',
paginationClickable: true
})
</script>
</body>
</html>