Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Schema.org JSON-LD Microdata for SEO (Homepage) #290

Merged
merged 13 commits into from Dec 4, 2019
50 changes: 50 additions & 0 deletions _layouts/default.html
Expand Up @@ -63,6 +63,56 @@
<script defer src="/js/bootstrap.min.js"></script>
<script defer src="/js/scripts.js"></script>

RiccardoMasutti marked this conversation as resolved.
Show resolved Hide resolved
{% unless page.layout == "post" %}
<!-- Schema.org JSON-LD Markup for Search Engine Optimization -->
<script type='application/ld+json'>
{
"@context": "https://schema.org/",
"@type": "SoftwareApplication",
"applicationCategory": "FinanceApplication",
"name": "Bisq Network",
"image": "https://bisq.network/images/bisq-logo.svg",
"availableOnDevice": "Desktop",
"author": {
"@type": "Project",
"url": "https://bisq.network/",
"name": "Bisq",
"sameAs": [
RiccardoMasutti marked this conversation as resolved.
Show resolved Hide resolved
"https://github.com/bisq-network",
"https://twitter.com/bisq_network",
"https://www.youtube.com/c/bisq-network",
"https://bisq.network/slack-invite",
"https://bisq.community/",
"https://lists.bisq.network/listinfo/bisq-contrib",
"https://webchat.freenode.net/?channels=bisq",
"https://www.reddit.com/r/bisq",
"https://keybase.io/team/bisq"
]
},
"downloadUrl": "https://bisq.network/downloads/",
"fileSize": "180MB",
"operatingSystem": [
RiccardoMasutti marked this conversation as resolved.
Show resolved Hide resolved
"Windows",
"Linux",
"OSX"
],
"releaseNotes": "https://github.com/bisq-network/bisq/releases/latest",
"screenshot": "https://bisq.network/images/bisq_screen0.png",
"softwareVersion": "{{ site.client_version }}",
"aggregateRating": {
RiccardoMasutti marked this conversation as resolved.
Show resolved Hide resolved
"@type": "AggregateRating",
"ratingValue": "5",
"ratingCount": "5"
},
"offers": {
RiccardoMasutti marked this conversation as resolved.
Show resolved Hide resolved
"@type": "Offer",
"price": "0",
"priceCurrency": "BTC"
}
}
</script>
{% endunless %}

RiccardoMasutti marked this conversation as resolved.
Show resolved Hide resolved
</head>

<body class="home page-template-default page page-id-6 custom-background">
Expand Down