post.html 735 B

123456789101112131415161718192021222324252627282930
  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. <hr>
  12. <ul class="pager">
  13. {% if page.next %}
  14. <li class="previous"><a href="{{ site.BASE_PATH }}{{ page.next.url }}" title="{{ page.next.title }}">&larr; {{ page.next.title }}</a></li>
  15. {% endif %}
  16. {% if page.previous %}
  17. <li class="next"><a href="{{ site.BASE_PATH }}{{ page.previous.url }}" title="{{ page.previous.title }}">{{ page.previous.title }} &rarr;</a></li>
  18. {% endif %}
  19. </ul>
  20. </article>