mirror of
https://github.com/asimonson1125/asimonson1125.github.io.git
synced 2026-02-25 05:09:49 -06:00
87 lines
2.9 KiB
HTML
87 lines
2.9 KiB
HTML
{% block content %}
|
|
<div class="foreground"></div>
|
|
<div class="foregroundContent">
|
|
<div class="relative">
|
|
<div id="aboutMe" class="col" data-aos="fade-up">
|
|
<h2 class="concentratedHead">About Me</h2>
|
|
<p>
|
|
I'm Andrew Simonson, a senior undergrad at
|
|
<strong>Rochester Institute of Technology </strong>
|
|
in the <b>Computer Science BS</b> program (international relations minor), pursuing a career in data
|
|
science with a focus on predictive analytics.
|
|
</p>
|
|
<p>
|
|
<br />
|
|
Ominous positivity is kinda my thing.
|
|
</p>
|
|
<br />
|
|
</div>
|
|
<div class="col rightCol" data-aos="fade-up">
|
|
<div id="skills">
|
|
<h2 id="skillstag">Skills</h2>
|
|
{% from 'partials/skills.html' import skills %} {{ skills(var['skillList']) }}
|
|
</div>
|
|
<div id="timeline">
|
|
<h2>Timeline</h2>
|
|
<div class="checkbox-wrapper">
|
|
<div class="flex start">
|
|
<label class="switch" htmlFor="pinned">
|
|
<input
|
|
type="checkbox"
|
|
id="pinned"
|
|
onClick='toggleCheckbox("up")'
|
|
checked
|
|
/>
|
|
<div class="slider round"></div>
|
|
<strong>Pinned</strong>
|
|
</label>
|
|
</div>
|
|
<div class="flex start">
|
|
<label class="switch" htmlFor="education">
|
|
<input
|
|
type="checkbox"
|
|
id="education"
|
|
onClick="toggleCheckbox('up')"
|
|
/>
|
|
<div class="slider round"></div>
|
|
<strong>Education</strong>
|
|
</label>
|
|
</div>
|
|
<div class="flex start">
|
|
<label
|
|
class="switch"
|
|
htmlFor="experience"
|
|
onClick="toggleCheckbox('up')"
|
|
>
|
|
<input type="checkbox" id="experience" />
|
|
<div class="slider round"></div>
|
|
<strong>Work Experience</strong>
|
|
</label>
|
|
</div>
|
|
<div class="flex start">
|
|
<label
|
|
class="switch"
|
|
htmlFor="technical"
|
|
onClick="toggleCheckbox('up')"
|
|
>
|
|
<input type="checkbox" id="technical" />
|
|
<div class="slider round"></div>
|
|
<strong>Technical</strong>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
<div class="timeline checkbox-client">
|
|
{% from 'partials/timeline.html' import timeitem %} {% for i in
|
|
var["timeline"] %} {{ timeitem(i, var["timeline"][i]["classes"],
|
|
var["timeline"][i]["date"], var["timeline"][i]["content"])}} {%
|
|
endfor %}
|
|
</div>
|
|
<script>
|
|
toggleCheckbox("up");
|
|
</script>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|