My personal blog
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

69 lines
1.8 KiB

11 years ago
---
layout: default
single: true
---
<div>
<article class="hentry" role="article">
{% include article.html %}
<footer>
<hr>
{% if page.category or page.categories or page.sharing != false %}
<div class="row-fluid">
{% if page.category or page.categories %}
<div class="span6">
<p class="meta">
{% if updated %}{{ updated }}</br>{% else %}{% endif %}
{% include post/categories.html %}
</p>
</div>
{% unless page.sharing == false %}
<div class="span6 social-sharing">
{% include post/sharing.html %}
</div>
{% endunless %}
{% else %}
{% unless page.sharing == false %}
<div class="span12">
{% include post/sharing.html %}
</div>
{% endunless %}
11 years ago
{% endif %}
</div>
{% endif %}
<div class="row-fluid">
<div class="span12">
<p class="meta">
{% if page.previous.url %}
<a class="basic-alignment left" href="{{page.previous.url}}" title="Previous Post: {{page.previous.title}}">&laquo; {{page.previous.title}}</a>
{% endif %}
{% if page.next.url %}
<a class="basic-alignment right" href="{{page.next.url}}" title="Next Post: {{page.next.title}}">{{page.next.title}} &raquo;</a>
{% endif %}
</p>
</div>
</div>
11 years ago
</footer>
</article>
{% if site.disqus_short_name and page.comments == true %}
<section>
<h1>Comments</h1>
<div id="disqus_thread" aria-live="polite">{% include post/disqus_thread.html %}</div>
</section>
{% endif %}
</div>
{% comment %}
Sidebars need to be fixed
11 years ago
{% unless page.sidebar == false %}
<aside class="sidebar">
{% if site.page_asides.size %}
{% include_array page_asides %}
11 years ago
{% else %}
{% include_array default_asides %}
{% endif %}
</aside>
{% endunless %}
{% endcomment %}