51 lines
1.1 KiB
HTML
51 lines
1.1 KiB
HTML
---
|
|
layout: framework
|
|
banner: 'default'
|
|
banner_html: post-header.html
|
|
sidebar:
|
|
- article-menu
|
|
---
|
|
|
|
<div class="post">
|
|
<section>
|
|
|
|
{%- assign name = 'banner' -%}
|
|
{%- include functions.html func='get_value' -%}
|
|
{%- assign banner = return -%}
|
|
|
|
{%- if banner == nil -%}
|
|
{%- include views/post-header.html -%}
|
|
{%- endif -%}
|
|
|
|
{%- include views/article.html -%}
|
|
|
|
<div class="post-nav">
|
|
{%- if page.previous -%}
|
|
<a href="{{ page.previous.url }}" title="{{ page.previous.title | escape }}">« Prev</a>
|
|
{%- else -%}
|
|
<span></span>
|
|
{%- endif -%}
|
|
|
|
{%- if page.next -%}
|
|
<a href="{{ page.next.url }}" title="{{ page.next.title | escape }}">Next »</a>
|
|
{%- else -%}
|
|
<span></span>
|
|
{%- endif -%}
|
|
</div>
|
|
|
|
{%- if page.comments != false -%}
|
|
|
|
{%- if site.disqus.shortname -%}
|
|
{%- include extensions/comments/disqus.html -%}
|
|
{%- endif -%}
|
|
|
|
{%- if site.gitment.username -%}
|
|
{%- include extensions/comments/gitment.html -%}
|
|
{%- endif -%}
|
|
|
|
{%- endif -%}
|
|
|
|
</section>
|
|
</div>
|
|
|
|
|