aboutsummaryrefslogtreecommitdiff
path: root/layouts/partials/ld
diff options
context:
space:
mode:
authorAriel Costas Guerrero <94913521+arielcostas@users.noreply.github.com>2024-05-04 01:05:04 +0200
committerAriel Costas Guerrero <94913521+arielcostas@users.noreply.github.com>2024-05-04 13:34:10 +0200
commitfe7c149811f2e20c055ad0375aff05d29491efb4 (patch)
tree8df0652a35cca0f9c8fcb5fb90648fef2f8415b4 /layouts/partials/ld
parent3de434508e0b609dea1ce8dca94ef1b708e61d61 (diff)
Rebuild the site in Astro
Add licence Update site name in header to match README.md Add missing metadescription, opengraph and link to RSS Update Astro configuration to include sitemap integration with priority and changefreq settings New post
Diffstat (limited to 'layouts/partials/ld')
-rw-r--r--layouts/partials/ld/person.html45
-rw-r--r--layouts/partials/ld/post.html26
-rw-r--r--layouts/partials/ld/website.html8
3 files changed, 0 insertions, 79 deletions
diff --git a/layouts/partials/ld/person.html b/layouts/partials/ld/person.html
deleted file mode 100644
index f329ae7..0000000
--- a/layouts/partials/ld/person.html
+++ /dev/null
@@ -1,45 +0,0 @@
-<script type="application/ld+json">
-{
- "@context": "http://schema.org",
- "@type": "Person",
- "@id": "https://costas.dev/me",
- "name": "Ariel Costas Guerrero",
- "givenName": "Ariel",
- "familyName": "Costas Guerrero",
- "url": "https://costas.dev/me",
- "nationality": "ES",
- "sameAs": [
- "https://github.com/arielcostas",
- "https://linkedin.com/in/ariel-costas",
- "https://masto.es/@arielcg"
- ],
- "hasCertification": [
- {
- "@type": "Certification",
- "name": "Microsoft Certified: Azure DevOps Engineer Expert",
- "url": "https://learn.microsoft.com/gl-es/users/ariel-costas/transcript/vn32b8j6m2zwyn7",
- "validFrom": "2023-09-15",
- "expires": "2024-09-16",
- "issuedBy": {
- "@context": "http://schema.org",
- "@type": "Organization",
- "name": "Microsoft Corporation",
- "url": "https://microsoft.com"
- }
- },
- {
- "@type": "Certification",
- "name": "Microsoft Certified: Azure Developer Associate",
- "url": "https://learn.microsoft.com/gl-es/users/ariel-costas/transcript/vn32b8j6m2zwyn7",
- "validFrom": "2023-09-15",
- "expires": "2024-09-16",
- "issuedBy": {
- "@context": "http://schema.org",
- "@type": "Organization",
- "name": "Microsoft Corporation",
- "url": "https://microsoft.com"
- }
- }
- ]
-}
-</script> \ No newline at end of file
diff --git a/layouts/partials/ld/post.html b/layouts/partials/ld/post.html
deleted file mode 100644
index 0afa7ad..0000000
--- a/layouts/partials/ld/post.html
+++ /dev/null
@@ -1,26 +0,0 @@
-<script type="application/ld+json">
- {
- "@context": "http://schema.org",
- "@type": "BlogPosting",
- "@id": {{ printf "%s" .Page.Permalink }},
- "url": {{ printf "%s" .Page.Permalink }},
- "headline": "{{ printf "%s" .Title | safeJS }}",
- {{- with .Params.summary -}}
- "description": "{{ printf "%s" . | safeJS }}",
- {{- end }}
- {{ with .Params.date -}}
- "datePublished": {{ time.Format "2006-01-02T15:04:05-07:00" . }},
- {{- end }}
- "author": {
- "@type": "Person",
- "url": "https://www.costas.dev/me",
- "name": "Ariel Costas Guerrero"
- },
- "creator": {
- "@type": "Person",
- "url": "https://www.costas.dev/me",
- "name": "Ariel Costas Guerrero"
- },
- "inLanguage": "{{ with .Params.lang }}{{ . }}{{ else }}es{{ end }}"
- }
-</script> \ No newline at end of file
diff --git a/layouts/partials/ld/website.html b/layouts/partials/ld/website.html
deleted file mode 100644
index 421250f..0000000
--- a/layouts/partials/ld/website.html
+++ /dev/null
@@ -1,8 +0,0 @@
-<script type="application/ld+json">
-{
- "@context": "http://schema.org",
- "@type": "WebSite",
- "id": "https://www.costas.dev/",
- "url": "https://www.costas.dev/"
-}
-</script> \ No newline at end of file