Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion _includes/head.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
/static_files -->
{%- comment -%}
<link rel="apple-touch-icon" href="/apple-touch-icon.png"/>
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="apple-icon-114.png" type="image/png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="/apple-icon-114.png" type="image/png">
<link rel="icon" href="/favicon.ico"/>
<link rel="icon" href="/favicon.svg" type="image/svg+xml"/>
{%- endcomment %}
Expand Down
34 changes: 32 additions & 2 deletions _includes/seo.html
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@
{
{%- if author.type == "Organization" %}
"@type": "Organization",
"@id": {{ '/' | absolute_url | append: '#organization' | jsonify }},
"@id": "{{ '/' | absolute_url | append: '#organization' | jsonify }},
"name": {{ author.name | default: seo_tag.name | default: site.name | jsonify }},
"url": {{ author.url | jsonify }},
"location": {
Expand All @@ -126,10 +126,40 @@
},
"query-input": "required name=search_term_string"
},
{
"@type": "Organization",
"@id": {{ '/' | absolute_url | append: '#organization' | jsonify }},
"name": "zuralski.net Piotr Żuralski",
"url": "{% include ref-url.html ref='companys-data' locale=page.locale -%}",
"foundingDate": "2015-10-05",
"vatID": "PL5851426606",
"address": {
{% comment -%}
"@id": "{% include ref-url.html ref='companys-data' locale=page.locale -%}#organization-register-address",
{% endcomment -%}
"@type": "PostalAddress",
"streetAddress": "Powstania Kościuszkowskiego 1/2",
"postalCode": "80-288",
"addressLocality": "Gdańsk",
"addressRegion": "pomorskie",
"addressCountry": "PL"
},
"deliveryAddress": {
"@type": "PostalAddress",
"streetAddress": "Bolesława Chrobrego 14/2",
"postalCode": "81-783",
"addressLocality": "Sopot",
"addressRegion": "pomorskie",
"addressCountry": "PL"
},
"location": {
"@id": "{% include ref-url.html ref='companys-data' locale=page.locale -%}#organization-location"
}
},
{
"@type": "WebSite",
"@id": {{ '/' | absolute_url | append: '#website' | jsonify }},
"url": {{ '/' | absolute_url | jsonify }},
"url": "{% include ref-url.html ref='index' locale=page.locale -%}",
"name": {{ site.title | jsonify }},
"publisher": {
"@id": {%- if author.type == "Organization" %}{{ '/' | absolute_url | append: '#organization' | jsonify }}{% else %}{{ '/' | absolute_url | append: '#person' | jsonify }}{% endif %}
Expand Down
2 changes: 1 addition & 1 deletion _pages/search.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
published: true
permalink: /_search.html
ref: search
ref: _search
search: exclude
sitemap: false
---
Expand Down