Skip to content

Instantly share code, notes, and snippets.

@robhinds
Last active January 27, 2021 11:41
Show Gist options
  • Save robhinds/e0ce4808281c9c030cb8c039231a0edd to your computer and use it in GitHub Desktop.
Save robhinds/e0ce4808281c9c030cb8c039231a0edd to your computer and use it in GitHub Desktop.
{% if page.faqSchema %}
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{% for faq in page.faqSchema %}
{
"@type": "Question",
"name": "{{faq.title}}",
"acceptedAnswer": {
"@type": "Answer",
"text": "{{faq.answer}}"
}
}
{% if forloop.last == false %}
,
{% endif %}
{% endfor %}
]
}
</script>
{% endif %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment