|
| 1 | +<meta charset="UTF-8" /> |
| 2 | +<meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
| 3 | +<meta http-equiv="X-UA-Compatible" content="ie=edge" /> |
| 4 | + |
| 5 | +{{ partial "helpers/style-bundle.html" . }} |
| 6 | + |
| 7 | +<!--================= fab-icon =========================--> |
| 8 | +{{/* add favicon only if the site author has provided the the favicon */}} |
| 9 | +{{ if site.Params.logo.favicon }} |
| 10 | + {{ $favicon := site.Params.logo.favicon }} |
| 11 | + |
| 12 | + {{/* resize the favicon. don't resize svg because it is not supported */}} |
| 13 | + {{ $favicon = resources.Get $favicon }} |
| 14 | + {{ if and $favicon (ne $favicon.MediaType.SubType "svg") }} |
| 15 | + {{ $favicon = $favicon.Resize "42x" }} |
| 16 | + {{ end }} |
| 17 | + {{ $favicon = $favicon.RelPermalink}} |
| 18 | + |
| 19 | + <link rel="icon" type="image/png" href="{{ $favicon }}" /> |
| 20 | +{{end}} |
| 21 | + |
| 22 | +{{ with .OutputFormats.Get "rss" -}} |
| 23 | + {{ printf `<link rel=%q type=%q href=%q title=%q>` .Rel .MediaType.Type .Permalink site.Title | safeHTML }} |
| 24 | +{{ end }} |
| 25 | + |
| 26 | +{{/* ========== CUSTOM SEO ENHANCEMENTS ========== */}} |
| 27 | + |
| 28 | +{{/* JSON-LD Structured Data for Person */}} |
| 29 | +<script type="application/ld+json"> |
| 30 | +{ |
| 31 | + "@context": "https://schema.org", |
| 32 | + "@type": "Person", |
| 33 | + "name": "João Trigo Soares", |
| 34 | + "jobTitle": "Platforms Engineering Team Lead", |
| 35 | + "worksFor": { |
| 36 | + "@type": "Organization", |
| 37 | + "name": "NOS Inovação", |
| 38 | + "url": "https://www.nos.pt" |
| 39 | + }, |
| 40 | + "url": "https://jtsoar.es", |
| 41 | + "image": "https://jtsoar.es/images/author/avatar.jpg", |
| 42 | + "email": "joao@jtsoar.es", |
| 43 | + "sameAs": [ |
| 44 | + "https://github.com/suvl", |
| 45 | + "https://linkedin.com/in/joaotrigosoares", |
| 46 | + "https://twitter.com/thegreatdevop" |
| 47 | + ], |
| 48 | + "knowsAbout": [ |
| 49 | + "Kubernetes", |
| 50 | + "DevOps", |
| 51 | + "Cloud Native", |
| 52 | + "Platform Engineering", |
| 53 | + "Azure", |
| 54 | + "Google Cloud", |
| 55 | + "Terraform", |
| 56 | + "Docker" |
| 57 | + ], |
| 58 | + "hasCredential": [ |
| 59 | + { |
| 60 | + "@type": "EducationalOccupationalCredential", |
| 61 | + "name": "Certified Kubernetes Administrator (CKA)", |
| 62 | + "credentialCategory": "Professional Certification" |
| 63 | + }, |
| 64 | + { |
| 65 | + "@type": "EducationalOccupationalCredential", |
| 66 | + "name": "Certified Kubernetes Application Developer (CKAD)", |
| 67 | + "credentialCategory": "Professional Certification" |
| 68 | + }, |
| 69 | + { |
| 70 | + "@type": "EducationalOccupationalCredential", |
| 71 | + "name": "Certified Kubernetes Security Specialist (CKS)", |
| 72 | + "credentialCategory": "Professional Certification" |
| 73 | + } |
| 74 | + ], |
| 75 | + "alumniOf": { |
| 76 | + "@type": "CollegeOrUniversity", |
| 77 | + "name": "Faculty of Engineering, University of Porto (FEUP)" |
| 78 | + }, |
| 79 | + "address": { |
| 80 | + "@type": "PostalAddress", |
| 81 | + "addressLocality": "Lisbon", |
| 82 | + "addressCountry": "Portugal" |
| 83 | + } |
| 84 | +} |
| 85 | +</script> |
| 86 | + |
| 87 | +{{/* Additional meta tags for better SEO */}} |
| 88 | +<meta name="author" content="João Trigo Soares"> |
| 89 | +<meta name="keywords" content="João Trigo Soares, DevOps, Kubernetes, Platform Engineering, CKA, CKAD, CKS, Cloud Native, Azure, GCP, Terraform, Lisbon, Portugal"> |
| 90 | +<meta name="robots" content="index, follow"> |
| 91 | +<link rel="canonical" href="{{ .Permalink }}"> |
| 92 | + |
| 93 | +{{/* Twitter Card tags */}} |
| 94 | +<meta name="twitter:card" content="summary"> |
| 95 | +<meta name="twitter:site" content="@thegreatdevop"> |
| 96 | +<meta name="twitter:creator" content="@thegreatdevop"> |
| 97 | +<meta name="twitter:title" content="{{ if .IsHome }}João Trigo Soares - Platforms Engineering Team Lead{{ else }}{{ .Title }} | João Trigo Soares{{ end }}"> |
| 98 | +<meta name="twitter:description" content="Platforms Engineering Team Lead specializing in Kubernetes, Cloud Native, and DevOps practices. Triple Kubernetes Certified (CKA, CKAD, CKS)."> |
| 99 | +<meta name="twitter:image" content="https://jtsoar.es/images/author/avatar.jpg"> |
0 commit comments