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.
 
 
 

39 lines
1.6 KiB

{% unless page.no_header %}
{% if index %}
<div class="row-fluid">
<div class="span2">
<h1 class="date-time">{% include post/date.html %}<i class="icon-calendar-empty"></i> {{ time }}</h5>
<div class="row-fluid">
{% if site.disqus_short_name and page.comments != false and post.comments != false and site.disqus_show_comment_count == true %}
<a href="{% if index %}{{ site.url }}{{ root_url }}{{ post.url }}{% endif %}#disqus_thread">Comments </a> <span class="fui-bubble-16"></span>
{% endif %}
</div>
{% if post.categories %}
<div class="row-fluid">
{% for category in post.categories %}
<a href="{{ root_url }}/{{ site.category_dir }}/{{ category | split: " " | join: "-" }}/"><span class="badge">{{ category }}</span></a>
{% endfor %}
</div>
{% endif %}
</div>
<div class="span10">
<h1 class="link"><a href="{{ root_url }}{{ post.url }}">{{ post.title }}</a></h1>
{{ content | excerpt }}
{% capture excerpted %}{{ content | has_excerpt }}{% endcapture %}
{% if excerpted == 'true' %} <a href="{{ root_url }}{{ post.url }}">{{ site.excerpt_link }}</a> {% endif %}
</div>
</div>
{% else %}
<header>
<div class="jumbotron">
{% if site.titlecase %}{{ page.title | titlecase }}{% else %}{{ page.title }}{% endif %}
<h5>{% include post/date.html %}<i class="icon-calendar-empty"></i> {{ time }}</h5>
</div>
</header>
<div class="row-fluid">
<div class="span12">
{{ content }}
</div>
</div>
{% endif %}
{% endunless %}