Newer
Older
{%- if not articles_page or first_article_of_day %}
<h4 class="date">{{ article.date.strftime("%b %e, %G") }}</h4>
{%- endif %}
<div class="post{% if article.pinned %} pinned{% endif %}">
{% if article['title'] -%}
<h2 class="title">
<a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark" title="Permanent Link to "{{ article.title }}"">{{ article.title }}</a>
</h2>
{% endif %}
{{ article.content }}
<div class="clear"></div>
<div class="info">
{% if article.pinned -%}
<a href="{{ SITEURL }}/{{ article.url }}">posted {{ article.date.strftime("%B %e, %l:%M %P") }}</a>
{%- else -%}
<a href="{{ SITEURL }}/{{ article.url }}">posted at {{ article.date.strftime("%l:%M %P") }}</a>
{%- if article.category.name != "Uncategorized" -%}
· <a href="{{ SITEURL }}/{{ article.category.url }}" rel="tag">{{ article.category }}</a>
{%- endif %}
{% if article.tags %}
<div class="tags">{% for t in article.tags %}
<a href="{{ SITEURL }}/{{ t.url }}" {%- if tag and tag.name == t.name %} class="selected"{% endif -%}>{{ t }}</a>
{%- endfor %}
</div>
{%- endif %}
{% endif %}
</div>
<div class="clear"></div>
</div>