post.html 776 B

123456789101112131415161718192021222324252627282930313233
  1. <div class="page-header">
  2. <h1>{{ page.title }} {% if page.tagline %}<small>{{page.tagline}}</small>{% endif %}</h1>
  3. </div>
  4. <article>
  5. <div class="col-sm-10">
  6. <div class="article_body">
  7. {{ content }}
  8. </div>
  9. </div>
  10. <div class="clearfix"></div>
  11. <ul class="pager">
  12. {% if page.previous %}
  13. <li class="previous"><a href="{{ site.BASE_PATH }}{{ page.previous.url }}" title="{{ page.previous.title }}">&larr; {{ page.previous.title }}</a></li>
  14. {% endif %}
  15. {% if page.next %}
  16. <li class="next"><a href="{{ site.BASE_PATH }}{{ page.next.url }}" title="{{ page.next.title }}">{{ page.next.title }} &rarr;</a></li>
  17. {% endif %}
  18. </ul>
  19. <hr>
  20. </div>
  21. <div class="col-sm-2 sidebar-2">
  22. </div>
  23. </article>
  24. <div class="clearfix"></div>