post.html 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <h2 class="post">{{ page.title }}</h2>
  2. <div class="row post-full">
  3. <div class="col-sm-12">
  4. <div class="date">
  5. <span>{{ page.date | date_to_long_string }}</span>
  6. </div>
  7. <p>
  8. <a href="https://twitter.com/share" class="twitter-share-button" data-via="radnetworks">Tweet</a>
  9. </p>
  10. <div class="content">
  11. {{ content }}
  12. </div>
  13. {% unless page.categories == empty %}
  14. <ul class="tag_box inline">
  15. <li><i class="glyphicon glyphicon-open"></i></li>
  16. {% assign categories_list = page.categories %}
  17. {% include JB/categories_list %}
  18. </ul>
  19. {% endunless %}
  20. {% unless page.tags == empty %}
  21. <ul class="tag_box inline">
  22. <li><i class="glyphicon glyphicon-tags"></i></li>
  23. {% assign tags_list = page.tags %}
  24. {% include JB/tags_list %}
  25. </ul>
  26. {% endunless %}
  27. <ul class="pagination">
  28. {% if page.previous %}
  29. <li class="prev"><a href="{{ BASE_PATH }}{{ page.previous.url }}" title="{{ page.previous.title }}">&laquo; Previous</a></li>
  30. {% else %}
  31. <li class="prev disabled"><a>&larr; Previous</a></li>
  32. {% endif %}
  33. {% if page.next %}
  34. <li class="next"><a href="{{ BASE_PATH }}{{ page.next.url }}" title="{{ page.next.title }}">Next &raquo;</a></li>
  35. {% else %}
  36. <li class="next disabled"><a>Next &rarr;</a>
  37. {% endif %}
  38. </ul>
  39. </div>
  40. </div>