mirror of
https://github.com/arsenetar/pelican-red.git
synced 2024-11-22 11:19:02 +00:00
Andrew Senetar
0d53dc55d4
The templates now include microformatting from schema.org. The title and content_title blocks are no longer in most templates. This updates the progess on issue #1
43 lines
2.1 KiB
HTML
43 lines
2.1 KiB
HTML
<li class="row" itemprop="itemListElement" itemscope itemtype="http://schema.org/Article">
|
|
<div class="article">
|
|
<div class="small-4 columns">
|
|
{% if article.image %}
|
|
<a class="th" href="{{ SITEURL }}/{{ article.url }}"><img src="{{ SITEURL }}/static/{{article.image}}" itemprop="image" /></a>
|
|
{% else %}
|
|
<a class="th" href="{{ SITEURL }}/{{ article.url }}"><img src="{{ SITEURL }}/{{ FAVICON }}"/></a>
|
|
{% endif %}
|
|
</div>
|
|
<div class="small-12 columns">
|
|
<header>
|
|
<h3 itemprop="headline"><a href="{{ SITEURL }}/{{ article.url }}" itemprop="url">{{ article.title|title }}</a></h3>
|
|
<meta itemprop="name" content="{{ article.title }}"/>
|
|
{% if not category %}
|
|
<div><span>Category: <a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a></span></div>
|
|
{% endif %}
|
|
{% if not tag and article.tags -%}
|
|
<div>
|
|
<span><a title="Tags" href="{{ SITEURL }}/tags.html"><i class="large icon-tag"></i> </a></span>
|
|
<ul class="tag-list">
|
|
{% for tag in article.tags %}
|
|
<li><a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
{% endif %}
|
|
</header>
|
|
<div class="summary">
|
|
{{ article.summary }}
|
|
<span><a href="{{ SITEURL }}/{{ article.url }}" title="Continue Reading"><i class="icon-dot-3"></i></a></span>
|
|
</div>
|
|
<footer>
|
|
<ul class="no-bullet">
|
|
<li>Published by <span itemprop="author" itemscope itemtype="http://schema.org/Person"><a href="{{ SITEURL }}/{{ article.author.url }}" itemprop="url"><span itemprop="name">{{ article.author }}</span></a></span> on: <abbr class="published" title="{{ article.date.isoformat() }}" itemprop="datePublished">{{ article.locale_date }}</abbr></li>
|
|
{% if article.modified %}
|
|
<li>Last Modified on: <abbr title="{{ article.modified }}" itemprop="dateModified">{{ article.modified }}</abbr></li>
|
|
{% endif %}
|
|
</ul>
|
|
</footer>
|
|
</div>
|
|
</div>
|
|
</li>
|