Guest User

Untitled

a guest
Jan 21st, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. <section>
  2. <aside>
  3. <div class="container-fluid card" id="blogpostcontainer">
  4. {%include collapsing-sidebar.html %}
  5. </div>
  6. </aside>
  7. <div class="container">
  8. <h1 id="blogtitle">{{ page.title }}</h1>
  9. <hr>
  10. <p>Posted on {{ page.date | date: "%B %d, %Y" }}</p>
  11. {% if page.image %}
  12. <img class="img-reponsive" src="{{ page.image }}" alt="{{ page.image }}"><hr>
  13. {% endif %}
  14. <hr>
  15. {% if page.lead %}
  16. <p class="lead">{{ page.lead }}</p>
  17. {% endif %}
  18. {{ page.content }}
  19. <hr>
  20. {% if site.comments %}
  21. {% include comments.html %}
  22. {% endif %}
  23. {% if page.previous %}
  24. <span class="previous-link">
  25. <a rel="prev" href="{{ page.previous.url }}">Previous</a>
  26. </span>
  27. {% endif %}
  28. {% if page.next %}
  29. <span class="next-link pull-right">
  30. <a rel="next" href="{{ page.next.url }}">Next</a>
  31. </span>
  32. {% endif %}
  33. <hr>
  34. </div>
  35. </div>
  36. </section>
Add Comment
Please, Sign In to add comment