diff options
| author | Ariel Costas Guerrero <ariel@costas.dev> | 2025-04-10 21:42:41 +0200 |
|---|---|---|
| committer | Ariel Costas Guerrero <ariel@costas.dev> | 2025-04-10 21:42:41 +0200 |
| commit | e3141794b95e534656427fadf0354435c62254d6 (patch) | |
| tree | 95788249ac51475aea45ad17d7157dffd1564e47 /src/layouts/TrajectoryPageLayout.astro | |
| parent | 3caee506c961ae0e78503164ed6a0f81db3c8c32 (diff) | |
Fix formatting
Diffstat (limited to 'src/layouts/TrajectoryPageLayout.astro')
| -rw-r--r-- | src/layouts/TrajectoryPageLayout.astro | 111 |
1 files changed, 59 insertions, 52 deletions
diff --git a/src/layouts/TrajectoryPageLayout.astro b/src/layouts/TrajectoryPageLayout.astro index 1739a32..a5bfb46 100644 --- a/src/layouts/TrajectoryPageLayout.astro +++ b/src/layouts/TrajectoryPageLayout.astro @@ -5,77 +5,84 @@ 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, + "@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)} - /> +<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> + <h1>{t.trajectoryPage.headline}</h1> - <p>{t.trajectoryPage.intro}</p> + <p>{t.trajectoryPage.intro}</p> - <h2>{t.trajectoryPage.techTitle}</h2> + <h2>{t.trajectoryPage.techTitle}</h2> - <p>{t.trajectoryPage.techDescription1}</p> + <p>{t.trajectoryPage.techDescription1}</p> - <p>{t.trajectoryPage.techDescription2}</p> + <p>{t.trajectoryPage.techDescription2}</p> - <h2>{t.trajectoryPage.educationTitle}</h2> + <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> + <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.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.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> + <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> + <h2>{t.trajectoryPage.experienceTitle}</h2> - <h3>{t.trajectoryPage.estelaria1}</h3> + <h3>{t.trajectoryPage.estelaria1}</h3> - <p>{t.trajectoryPage.estelaria2}</p> + <p>{t.trajectoryPage.estelaria2}</p> - <p>{t.trajectoryPage.estelaria3}</p> + <p>{t.trajectoryPage.estelaria3}</p> - <h3>{t.trajectoryPage.polygon1}</h3> + <h3>{t.trajectoryPage.polygon1}</h3> - <p>{t.trajectoryPage.polygon2}</p> + <p>{t.trajectoryPage.polygon2}</p> - <h2>{t.trajectoryPage.projectsTitle}</h2> + <h2>{t.trajectoryPage.projectsTitle}</h2> - <p set:html={t.trajectoryPage.projectsDescription} /> + <p set:html={t.trajectoryPage.projectsDescription} /> </Layout> |
