forked from markus/AMPERION_Webpage
SEOOptimierungenAlex07092025
This commit is contained in:
parent
6828c3f835
commit
b7f8f2ac5e
34 changed files with 4426 additions and 253 deletions
26
layouts/partials/ld-org.html
Normal file
26
layouts/partials/ld-org.html
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
{{- /* Organization JSON-LD — robust, nur Felder ausgeben, die vorhanden sind */ -}}
|
||||
{{- $logo := site.Params.logo | default site.Params.favicon | default site.Params.image | default "images/logo.webp" -}}
|
||||
{{- $email := site.Params.email | default "" -}}
|
||||
{{- $phone := site.Params.phone1 | default site.Params.phone | default "" -}}
|
||||
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Organization",
|
||||
"name": "AMPERION GmbH",
|
||||
"url": {{ "/" | absURL | jsonify }},
|
||||
"logo": {{ ($logo | relURL | absURL) | jsonify }},
|
||||
"sameAs": [
|
||||
"https://www.linkedin.com/company/amperion-gmbh/",
|
||||
"https://www.instagram.com/amperion.at/",
|
||||
"https://www.facebook.com/share/1CZ7xm6cdw/?mibextid=wwXIfr"
|
||||
]{{ if or $email $phone }},
|
||||
"contactPoint": [{
|
||||
"@type": "ContactPoint",
|
||||
"contactType": "customer service"{{ if $phone }},
|
||||
"telephone": {{ $phone | jsonify }}{{ end }}{{ if $email }},
|
||||
"email": {{ $email | jsonify }}{{ end }},
|
||||
"areaServed": "AT"
|
||||
}]{{ end }}
|
||||
}
|
||||
</script>
|
||||
Loading…
Add table
Add a link
Reference in a new issue