yii2mod / yii2-comments

Comments module for Yii2
MIT License
159 stars 64 forks source link

Added microdata (schema.org) #17

Closed corpsepk closed 8 years ago

corpsepk commented 8 years ago

Hi!

How about add some microdata?

<li class="comment" id="comment-11" itemscope="" itemtype="http://schema.org/Comment">
    <div class="comment-content" data-comment-content-id="11">
        <div class="comment-author-avatar">
            <img src="/avatar.jpg" alt="corpsepk">
        </div>
        <div class="comment-details">
            <div class="comment-action-buttons"></div>
            <meta content="2012-08-03T01:07:34+02:00" itemprop="dateCreated">
            <meta content="2013-07-21T19:28:48+02:00" itemprop="dateModified">
            <div class="comment-author-name" itemprop="creator" itemscope="" itemtype="http://schema.org/Person">
                <span itemprop="name">corpsepk</span>
                <span class="comment-date">3 года назад</span>
            </div>
            <div class="comment-body" itemprop="text">
                Текст комментария
            </div>
        </div>
    </div>
</li>

You can test it here: https://search.google.com/structured-data/testing-tool https://webmaster.yandex.ru/microtest.xml

ihorchepurnyi commented 8 years ago

Hi, thanks.