mirror of
https://github.com/Xevion/old.xevion.github.io.git
synced 2025-12-06 13:15:39 -06:00
34 lines
1.6 KiB
HTML
34 lines
1.6 KiB
HTML
<section id="experience-section" class="section gap">
|
|
<div class="bg" data-anchor-target="#experience-section"
|
|
data-bottom-top="transform: translate3d(0px, -150px, 0px);"
|
|
data-top-bottom="transform: translate3d(0px, 150px, 0px);"
|
|
></div>
|
|
<div class="overlay-wrapper">
|
|
<div class="fade-in">
|
|
<div class="center">
|
|
<h1 class="section-heading">Experience</h1>
|
|
<span class="divider center"></span>
|
|
<p class="experience-description">Thanks to Northeastern's co-op program, I've had the privelege of completing two awesome six-month co-ops as a Creative Technologist at <a href="http://us.mullenlowe.com/" target="_blank">MullenLowe U.S.</a> and Software Engineer at <a href="https://starry.com/" target="_blank">Starry</a>. Starting in July 2017, I'll be joining the iTunes team at <a href="https://apple.com/" target="_blank">Apple</a> as a UI Engineer for my third and final co-op!</p>
|
|
</div>
|
|
<div class="experience-wrapper">
|
|
<div id="timeline">
|
|
{% for item in site.data.timeline %}
|
|
<div class="timeline-block">
|
|
<div class="timeline-content">
|
|
<h2 class="position">{{item.position}}</h2>
|
|
<h3 class="company"><a href="{{item.url}}" target="_blank">{{item.company}}</a></h3>
|
|
<p class="job-desc">{{item.description}}</p>
|
|
</div>
|
|
<div class="timeline-img">
|
|
<div class="sprite {{item.sprite}}"></div>
|
|
</div>
|
|
<span class="date">{{item.date}}</span>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
<i class="down-arrow"></i>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|