April 3, 2022
Cecil 5.91.0 released
Features
Adds support of SiteNavigationElement
structured data
Cecil is able to generate automatically metatags for you, useful for SEO and Open Graph, by including a partial template in HTML <head>
:
{% include 'partials/metatags.html.twig' %}
This template is also able to generate structured data (WebSite
, BreadcrumbList
and NewsArticle
) by enabling the following option in config:
metatags:
jsonld:
enabled: true
Now it also support SiteNavigationElement
, for example:
{
"@context":"http://schema.org",
"@type":"ItemList",
"itemListElement":[
{
"@type": "SiteNavigationElement",
"position": 1,
"name": "News",
"description": "News about Cecil.",
"url":"https://cecil.app/news/"
},
{
"@type": "SiteNavigationElement",
"position": 2,
"name": "Docs",
"description": "Official documentation of Cecil.",
"url":"https://cecil.app/documentation/"
},
{
"@type": "SiteNavigationElement",
"position": 3,
"name": "Download",
"description": "How to download Cecil.",
"url":"https://cecil.app/download/"
}
]
}
Misc
- Documentation updated / fixed
Release notes on GitHub