diff --git a/composer.json b/composer.json index 5915bf9622ae63d261fb4f5bdc121379b3b12475..6d2eb63931210081c6ee6a29399b1af2cce518d8 100644 --- a/composer.json +++ b/composer.json @@ -2,7 +2,7 @@ "name" : "quiqqer/faq", "type" : "quiqqer-module", "description" : "QUIQQER FAQ Module", - "version" : "dev-dev", + "version" : "dev-master", "authors" : [{ "name": "Henning Leutz", diff --git a/types/list.html b/types/list.html index 4f06382893d920b6fa96c92d0b1ba6acbe5539fe..5561ac69e9e821ca0a3b6a3d9981c8abc8517a17 100644 --- a/types/list.html +++ b/types/list.html @@ -39,9 +39,9 @@ {if count($faqList)} <ul itemscope itemtype="http://schema.org/ItemList"> {foreach $faqList as $Faq} - <li> - <a href="{url site=$Category}#faq{$Faq->getId()}"> - {$Faq->getAttribute('title')} + <li itemscope itemprop="itemListElement"> + <a itemprop="url" href="{url site=$Category}#faq{$Faq->getId()}"> + <span itemprop="name">{$Faq->getAttribute('title')}</span> </a> </li> {/foreach}