1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <h2 class="post">{{ page.title }}</h2>
- <div class="row post-full">
- <div class="col-sm-12">
- <div class="date">
- <span>{{ page.date | date_to_long_string }}</span>
- </div>
- <p>
- <a href="https://twitter.com/share" class="twitter-share-button" data-via="radnetworks">Tweet</a>
- </p>
- <div class="content">
- {{ content }}
- </div>
- {% unless page.categories == empty %}
- <ul class="tag_box inline">
- <li><i class="glyphicon glyphicon-open"></i></li>
- {% assign categories_list = page.categories %}
- {% include JB/categories_list %}
- </ul>
- {% endunless %}
- {% unless page.tags == empty %}
- <ul class="tag_box inline">
- <li><i class="glyphicon glyphicon-tags"></i></li>
- {% assign tags_list = page.tags %}
- {% include JB/tags_list %}
- </ul>
- {% endunless %}
-
- <ul class="pagination">
- {% if page.previous %}
- <li class="prev"><a href="{{ BASE_PATH }}{{ page.previous.url }}" title="{{ page.previous.title }}">« Previous</a></li>
- {% else %}
- <li class="prev disabled"><a>← Previous</a></li>
- {% endif %}
- {% if page.next %}
- <li class="next"><a href="{{ BASE_PATH }}{{ page.next.url }}" title="{{ page.next.title }}">Next »</a></li>
- {% else %}
- <li class="next disabled"><a>Next →</a>
- {% endif %}
- </ul>
- </div>
- </div>
|