-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
133 lines (127 loc) · 4.71 KB
/
index.html
File metadata and controls
133 lines (127 loc) · 4.71 KB
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
---
layout: default
title: Inicio
---
<link rel="stylesheet" href="/assets/css/homepage.css"/>
<span class="h-card">
<section class="introduction">
<img alt="" class="profile-pic u-photo" src="{{site.profileImage}}?s=512" height="256" width="256" crossorigin="anonymous"/>
<div class="introduction-text">
<h1>Hola, soy
<a href="https://www.ciccarello.me/ " class="p-name u-url disable-link-styles" rel="me">Anthony Ciccarello</a>!
<button id="pronounce-name-button" aria-label="Pronunciar el nombre" title="Pronuncia 'Anthony Ciccarello'" style="display: none;">🔈</button>
</h1>
<p class="p-note">
{{ site.description}}
</p>
<div class="btn-group">
<a class="btn-link" href="#connect">
Conectar conmigo
</a>
<a rel="feed" class="btn-link btn-alternate" href="/es/publicaciones/">
Ver publicaciones
</a>
<div>
</div>
</section>
<section class="profiles container">
<h2 class="profiles__title">Around the Web</h2>
{%- for group in links.homepage_es %}
<div class="card profile-card">
<div class="profile-card__title">
<h3 id="{{group.name | slugify }}-links">
{{group.name}}
</h3>
</div>
<nav aria-labelledby="{{group.name | slugify }}-links">
{%- for account in group.links %}
<a class="account-link" href="{{account.url}}" rel="me">
<span class="account-link__graphic" role="presentation">
<span class="svg-icon">
{% include account.icon %}
</span>
</span>
<span class="account-link__text">
{{account.title}}
<span class="account-link__secondary-text">{{account.description}}</span>
</span>
</a>
{%- if account.description == "@anthony@ciccarello.me" %}
<a class="u-url" href="acct:anthony@ciccarello.me"></a>
{%- endif %}
{%- endfor %}
</nav>
</div>
{%- endfor %}
</section>
<section class="container">
<h3>Carrera</h3>
{%- assign currentPosition = resume.experience[0] %}
<p>
Actualmente trabajo de forma remota como {{currentPosition.position}} para
<a class="p-org h-card" href="{{currentPosition.companyUrl}}" title="{{currentPosition.companyName}} inicio">{{currentPosition.companyName}}</a>.
Anteriormente trabajé para {{resume.experience[1].companyName}}, {{resume.experience[2].companyName}}, y {{resume.experience[3].companyName}}.
I've primarily worked on creating JavaScript front-end applications and Java back-end APIs
but have a wide range of experience across various projects.
Consulta mi <a href="/resume">currículum</a> para conocer mi trayectoria profesional completa.
</p>
<h3>
Personal
</h3>
<p>
Mi vida personal se centra principalmente en crianza de niños que están en <a href="/foster/">hogares de acogida</a>.
Disfruto de actividades al aire libre como el senderismo,
<a href="https://ebird.org/profile/OTUwMDI4" rel="me" title="perfil de eBird">la observación de aves</a>, y
jugar
<a href="https://es.wikipedia.org/wiki/Ultimate_(deporte)" title="artículo de wikipedia sobre ultimate frisbee">
al ultimate frisbee</a>.
Me gusta trabajar en pequeños proyectos de carpintería y cuidar de mis
plantas de interior y exterior.
Además, contribuyo al software de código abierto en mi tiempo libre y fui mantenedor del proyecto
<a href="https://typedoc.org/">TypeDoc</a>.
</p>
</section>
<section class="h-feed">
<div class="container">
<h2 class="post-list-heading p-name">Últimas publicaciones en español</h2>
<p>También tengo <a href="/posts/">más publicaciones en ingles</a>.</p>
<ol class="post-list">
{%- for post in collections.publicaciones reversed limit: 5 -%}
<li>
{% include "post-card.html" %}
</li>
{%- endfor -%}
</ol>
</div>
</section>
<section class="" id="connect">
<h2>Conectar</h2>
<p>Conéctate conmigo usando uno de mis canales preferido</p>
<div class="connect-icons">
<a aria-label="Email" class="icon-button btn-link u-email" href="mailto:anthony@ciccarello.me" rel="me">
<span class="svg-icon">
{% include "icons/email.svg" %}
</span>
</a>
<a aria-label="perfil de LinkedIn" class="icon-button btn-link" href="https://www.linkedin.com/in/anthonyciccarello/" rel="me">
<span class="svg-icon">
{% include "icons/linkedin.svg" %}
</span>
</a>
</div>
</section>
</span>
<script>
if (window.SpeechSynthesisUtterance) {
const speakButton = document.getElementById('pronounce-name-button');
speakButton.addEventListener('click', speakName);
speakButton.style.display = 'inline-block';
}
function speakName() {
var utterance = new SpeechSynthesisUtterance();
utterance.text = 'Anthony Chicka-rello';
utterance.lang = 'en-US';
utterance.rate = 0.75;
speechSynthesis.speak(utterance)
}
</script>