- Add web log to HttpContext on first retrieval per req - Add several DotLiquid filters - Use int for page numbers - Update all themes to use rel/abs link and other filters
71 lines
2.6 KiB
Plaintext
71 lines
2.6 KiB
Plaintext
{%- assign post = model.posts | first -%}
|
|
<div class="content single">
|
|
<article class="item">
|
|
<h1 class="item-heading">{{ post.title }}</h1>
|
|
<h4 class="post-meta">
|
|
{% if post.published_on -%}
|
|
<span title="Published On">
|
|
<i class="fa fa-calendar"></i> {{ post.published_on | date: "dddd, MMMM d, yyyy" }}
|
|
</span>
|
|
<span title="Published At">
|
|
<i class="fa fa-clock-o"></i> {{ post.published_on | date: "h:mm tt" | downcase }}
|
|
</span>
|
|
{%- else -%}
|
|
<span>**DRAFT**</span>
|
|
{% endif %}
|
|
<span title="Author"><i class="fa fa-user"></i> {{ model.authors | value: post.author_id }}</span>
|
|
{% if logged_on %}
|
|
<span><a href="{{ post | edit_post_link }}"><i class="fa fa-pencil-square-o"></i> Edit Post</a></span>
|
|
{% endif %}
|
|
</h4>
|
|
<div>{{ post.text }}</div>
|
|
{%- assign cat_count = post.category_ids | size -%}
|
|
{% if cat_count > 0 -%}
|
|
<h4>
|
|
Categorized
|
|
{% for cat_id in post.category_ids -%}
|
|
{% assign cat = categories | where: "id", cat_id | first %}
|
|
<span class="no-wrap">
|
|
<i class="fa fa-folder-open-o" title="Category"></i>
|
|
<a href="{{ cat | category_link }}" title="Categorized under “{{ cat.name | escape }}”">
|
|
{{ cat.name }}
|
|
</a>
|
|
</span>
|
|
{%- endfor %}
|
|
</h4>
|
|
{%- endif %}
|
|
{%- assign tag_count = post.tags | size -%}
|
|
{% if tag_count > 0 -%}
|
|
<h4>
|
|
Tagged
|
|
{% for tag in post.tags %}
|
|
<span class="no-wrap">
|
|
<a href="{{ tag | tag_link }}" title="Posts tagged “{{ tag | escape }}”" rel="tag">
|
|
<i class="fa fa-tag"></i> {{ tag }}
|
|
</a>
|
|
</span>
|
|
{%- endfor %}
|
|
</h4>
|
|
{%- endif %}
|
|
</article>
|
|
<div>
|
|
<nav aria-label="pagination">
|
|
<ul class="pager">
|
|
{% if model.newer_link -%}
|
|
<li class="previous item">
|
|
<h4 class="item-heading"><a href="{{ model.newer_link.value }}">«</a> Previous Post</h4>
|
|
<a href="{{ model.newer_link.value }}">{{ model.newer_name.value }}</a>
|
|
</li>
|
|
{%- else -%}
|
|
<li></li>
|
|
{% endif %}
|
|
{% if model.older_link -%}
|
|
<li class="next item">
|
|
<h4 class="item-heading">Next Post <a href="{{ model.older_link.value }}">»</a></h4>
|
|
<a href="{{ model.older_link.value }}">{{ model.older_name.value }}</a>
|
|
</li>
|
|
{%- endif -%}
|
|
</ul>
|
|
</nav>
|
|
</div>
|
|
</div> |