blob: 1739a32cd849ad58822695591b63c87fc5426679 (
plain)
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
|
---
import { useTranslations } from "../i18n";
import Layout from "./Layout.astro";
const t = useTranslations(Astro.currentLocale);
const schema = {
"@context": "https://schema.org",
"@type": "WebPage",
url: "https://www.costas.dev/trajectory",
headline: t.trajectoryPage.headline,
};
---
<Layout title={t.trajectoryPage.title} description={t.trajectoryPage.description}>
<script
is:inline
type="application/ld+json"
slot="head-jsonld"
set:html={JSON.stringify(schema)}
/>
<h1>{t.trajectoryPage.headline}</h1>
<p>{t.trajectoryPage.intro}</p>
<h2>{t.trajectoryPage.techTitle}</h2>
<p>{t.trajectoryPage.techDescription1}</p>
<p>{t.trajectoryPage.techDescription2}</p>
<h2>{t.trajectoryPage.educationTitle}</h2>
<ul>
<li>
<strong>{t.trajectoryPage.efsetCert1}</strong>
{t.trajectoryPage.efsetCert2} <a
href="https://cert.efset.org/es/Yxzc9L"
>{t.trajectoryPage.viewCertificate}</a
>
</li>
<li>
<strong>{t.trajectoryPage.azureDeveloperCert1}</strong>
{t.trajectoryPage.azureDeveloperCert2} <a
href="https://learn.microsoft.com/api/credentials/share/en-us/ariel-costas/E15072607CCF2DA9?sharingId=149A1CD9C13790F4"
>{t.trajectoryPage.viewCredential}</a
>.
</li>
<li>
<strong>{t.trajectoryPage.azureDevOpsCert1}</strong>
{t.trajectoryPage.azureDevOpsCert2} <a
href="https://learn.microsoft.com/api/credentials/share/en-us/ariel-costas/5FB94876A1701595?sharingId=149A1CD9C13790F4"
>{t.trajectoryPage.viewCredential}</a
>
</li>
<li>
<strong>{t.trajectoryPage.higherTechCert1}</strong>
{t.trajectoryPage.higherTechCert2} <a href="https://iesteis.es/">{t.trajectoryPage.higherTechCert3}</a> {t.trajectoryPage.higherTechCert4}
</li>
</ul>
<h2>{t.trajectoryPage.experienceTitle}</h2>
<h3>{t.trajectoryPage.estelaria1}</h3>
<p>{t.trajectoryPage.estelaria2}</p>
<p>{t.trajectoryPage.estelaria3}</p>
<h3>{t.trajectoryPage.polygon1}</h3>
<p>{t.trajectoryPage.polygon2}</p>
<h2>{t.trajectoryPage.projectsTitle}</h2>
<p set:html={t.trajectoryPage.projectsDescription} />
</Layout>
|