post.html 1.4 KB

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