Packages

Framework for Phoenix applications to optimize your site for search engines and displaying rich results when your URLs are shared across the internet.

Current section

Files

Jump to
phoenix_seo priv examples jsonld faq_page.exs
Raw

priv/examples/jsonld/faq_page.exs

SEO.JSONLD.FAQPage.build(%{
main_entity: [
SEO.JSONLD.Question.build(%{
name: "What is Elixir?",
accepted_answer:
SEO.JSONLD.Answer.build(%{
text: "A functional programming language."
})
}),
SEO.JSONLD.Question.build(%{
name: "What is Phoenix?",
accepted_answer:
SEO.JSONLD.Answer.build(%{
text: "A web framework for Elixir."
})
})
]
})