2013-07-30 18:58:58 +00:00
|
|
|
<li class="row" itemprop="itemListElement" itemscope itemtype="http://schema.org/Article">
|
2013-07-29 09:58:17 +00:00
|
|
|
<div class="article">
|
|
|
|
<div class="small-4 columns">
|
|
|
|
{% if article.image %}
|
2013-07-30 18:58:58 +00:00
|
|
|
<a class="th" href="{{ SITEURL }}/{{ article.url }}"><img src="{{ SITEURL }}/static/{{article.image}}" itemprop="image" /></a>
|
2013-07-29 09:58:17 +00:00
|
|
|
{% else %}
|
|
|
|
<a class="th" href="{{ SITEURL }}/{{ article.url }}"><img src="{{ SITEURL }}/{{ FAVICON }}"/></a>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
<div class="small-12 columns">
|
|
|
|
<header>
|
2013-07-30 18:58:58 +00:00
|
|
|
<h3 itemprop="headline"><a href="{{ SITEURL }}/{{ article.url }}" itemprop="url">{{ article.title|title }}</a></h3>
|
|
|
|
<meta itemprop="name" content="{{ article.title }}"/>
|
2013-07-29 09:58:17 +00:00
|
|
|
{% 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">
|
2013-07-30 18:58:58 +00:00
|
|
|
<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>
|
2013-07-29 09:58:17 +00:00
|
|
|
{% if article.modified %}
|
2013-07-30 18:58:58 +00:00
|
|
|
<li>Last Modified on: <abbr title="{{ article.modified }}" itemprop="dateModified">{{ article.modified }}</abbr></li>
|
2013-07-29 09:58:17 +00:00
|
|
|
{% endif %}
|
|
|
|
</ul>
|
|
|
|
</footer>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</li>
|