-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
103 lines (101 loc) · 4.09 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
---
layout: default
title: About me
og_desc: A summary of who I am, what I can do, and what I've worked on.
---
{% assign birth_date = site.data.about.birth_date | date: '%s' %}
{% assign now_timestamp = 'now' | date: '%s' %}
{% assign age_seconds = now_timestamp | minus: birth_date %}
{% assign age_days = age_seconds | divided_by: 3600 | divided_by: 24 %}
{% assign age_years = age_days | divided_by: 365 | floor %}
<div class="row">
<div class="col-12 col-lg-8 mx-auto">
<div class="row flex-md-row-reverse g-4 mb-4">
<div class="col-12 col-md-3">
<div class="ratio ratio-1x1">
<img
src="/assets/img/s8a-20231207-defaultdpi.jpg"
srcset="/assets/img/s8a-20231207-hidpi.jpg 2x, /assets/img/s8a-20231207-higherdpi.jpg 4x"
alt=""
class="img-fluid"
>
</div>
</div>
<div class="col-12 col-md-9">
<h1 class="display-5 fw-bold">Samuel Ochoa</h1>
<ul class="mb-0">
{% for contact in site.data.contact %}
<li>
<b>{{ contact.name }}:</b> <a href="{{ contact.url }}">{{ contact.value }}</a>
</li>
{% endfor %}
<li><b>Birth date:</b> {{ site.data.about.birth_date | date: "%B %e, %Y" }} ({{ age_years }} years old).</li>
<li><b>Country of birth:</b> {{ site.data.about.country_of_birth }}.</li>
<li><b>Country of residence:</b> {{ site.data.about.country_of_residence }}.</li>
<li><b>Languages:</b>
{% for language in site.data.about.languages %}
{{ language.language }} ({{ language.proficiency | downcase }}){% unless forloop.last %}, {% endunless %}
{% endfor %}
</li>
</ul>
</div>
</div>
<div class="row g-4 mb-4">
<div class="col-12">
<h2 class="fs-4">Skills</h2>
<ul class="mb-0">
{% for skill in site.data.about.skills %}
<li>{{ skill }}</li>
{% endfor %}
</ul>
</div>
</div>
<div class="row g-4 mb-4">
<div class="col-12">
<h2 class="fs-4">Work experience</h2>
{% for job in site.data.work_experience %}
<div class="card shadow-sm mb-2">
<div class="card-body">
<h3 class="card-title fs-5">{{ job.title }} – {% if job.company_url %}<a href="{{ job.company_url }}">{{ job.company }}</a>{% else %}{{ job.company }}{% endif %}</h3>
<p class="card-subtitle">{{ job.period_start | date: "%B %Y" }}{% if job.period_end and job.period_end != job.period_start %} – {{ job.period_end | date: "%B %Y" }}{% elsif job.period_end %}{% else %} – present{% endif %}</p>
<p class="card-text">{{ job.description }}</p>
</div>
</div>
{% endfor %}
</div>
</div>
<div class="row g-4 mb-4">
<div class="col-12">
<h2 class="fs-4">Education</h2>
{% for education in site.data.about.education %}
<div class="card shadow-sm mb-2">
<div class="card-body">
<h3 class="card-title fs-5">{{ education.title }} – {{ education.institution }}</h3>
<p class="card-subtitle">Graduated in {{ education.graduation_year }}</p>
<p class="card-text">Specialization: {{ education.specialization }}. {% if education.honors %}Honors: <em>{{ education.honors }}</em>.{% endif %}</p>
</div>
</div>
{% endfor %}
</div>
</div>
<div class="row g-4 mb-4">
<div class="col-12">
<h2 class="fs-4">Certifications</h2>
<ul class="mb-0">
{% for certification in site.data.about.certifications %}
<li><a href="{{ certification.url }}">{{ certification.title }}</a> – {{ certification.institution }} ({{ certification.year }}).</li>
{% endfor %}
</ul>
</div>
<div class="row g-4">
<div class="col-12">
<h2 class="fs-4">Other interests</h2>
<ul class="mb-0">
{% for interest in site.data.about.other_interests %}
<li>{{ interest }}</li>
{% endfor %}
</ul>
</div>
</div>
</div>
</div>