Build a beautiful and simple website in literally minutes. Demo at http://deanattali.com/beautiful-jekyll
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
1.1 KiB

9 years ago
9 years ago
8 years ago
9 years ago
8 years ago
9 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
9 years ago
  1. ---
  2. layout: base
  3. ---
  4. {% include header.html type="post" %}
  5. <div class="container">
  6. <div class="row">
  7. <div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
  8. <article role="main" class="blog-post">
  9. {{ content }}
  10. </article>
  11. {% if page.social-share %}
  12. {% include social-share.html %}
  13. {% endif %}
  14. <ul class="pager blog-pager">
  15. {% if page.previous.url %}
  16. <li class="previous">
  17. <a href="{{ page.previous.url | prepend: site.baseurl | replace: '//', '/' }}" data-toggle="tooltip" data-placement="top" title="{{page.previous.title}}">&larr; Previous Post</a>
  18. </li>
  19. {% endif %}
  20. {% if page.next.url %}
  21. <li class="next">
  22. <a href="{{ page.next.url | prepend: site.baseurl | replace: '//', '/' }}" data-toggle="tooltip" data-placement="top" title="{{page.next.title}}">Next Post &rarr;</a>
  23. </li>
  24. {% endif %}
  25. </ul>
  26. {% if page.comments %}
  27. <div class="disqus-comments">
  28. {% include disqus.html %}
  29. </div>
  30. {% endif %}
  31. </div>
  32. </div>
  33. </div>