mirror of
https://github.com/privacyguides/privacyguides.org.git
synced 2025-07-02 01:32:41 +00:00
Improve our About page (#2071)
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
{% extends "main.html" %}
|
||||
{% extends "schema.html" %}
|
||||
{% block extrahead %}
|
||||
<link rel="stylesheet" href="{{ 'assets/stylesheets/home.css?v=3.3.0' | url }}">
|
||||
{{ super() }}
|
||||
|
41
theme/schema.html
Normal file
41
theme/schema.html
Normal file
@ -0,0 +1,41 @@
|
||||
{% extends "main.html" %}
|
||||
{% block extrahead %}
|
||||
<script type="application/ld+json">
|
||||
[
|
||||
{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Organization",
|
||||
"@id": "https://www.privacyguides.org/",
|
||||
"name": "Privacy Guides",
|
||||
"url": "https://www.privacyguides.org/en/about/",
|
||||
"logo": "https://www.privacyguides.org/en/assets/brand/png/square/pg-yellow.png",
|
||||
"sameAs": [
|
||||
"https://twitter.com/privacy_guides",
|
||||
"https://github.com/privacyguides",
|
||||
"https://www.wikidata.org/wiki/Q111710163",
|
||||
"https://opencollective.com/privacyguides",
|
||||
"https://www.youtube.com/@privacyguides",
|
||||
"https://mastodon.neat.computer/@privacyguides"
|
||||
]
|
||||
},
|
||||
{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "WebSite",
|
||||
"url": "{{ config.site_url }}",
|
||||
"sameAs": [
|
||||
"https://www.privacyguides.org/",
|
||||
"https://twitter.com/privacy_guides",
|
||||
"https://github.com/privacyguides"
|
||||
],
|
||||
"potentialAction": {
|
||||
"@type": "SearchAction",
|
||||
"target": {
|
||||
"@type": "EntryPoint",
|
||||
"urlTemplate": "{{ config.site_url }}?q={search_term_string}"
|
||||
},
|
||||
"query-input": "required name=search_term_string"
|
||||
}
|
||||
}
|
||||
]
|
||||
</script>
|
||||
{% endblock %}
|
Reference in New Issue
Block a user