Merge pull request #202 from xuhdev/structured-data

Add microdata: tag the main content of a page as an article
This commit is contained in:
Eric Holscher 2015-06-01 16:09:04 -07:00
commit a369939bb3

View File

@ -132,9 +132,11 @@
<div class="wy-nav-content"> <div class="wy-nav-content">
<div class="rst-content"> <div class="rst-content">
{% include "breadcrumbs.html" %} {% include "breadcrumbs.html" %}
<div role="main" class="document"> <div role="main" class="document" itemscope="itemscope" itemtype="http://schema.org/Article">
<div itemprop="articleBody">
{% block body %}{% endblock %} {% block body %}{% endblock %}
</div> </div>
</div>
{% include "footer.html" %} {% include "footer.html" %}
</div> </div>
</div> </div>