post.html 419 B

1234567891011121314151617181920212223
  1. ---
  2. layout: default
  3. ---
  4. <div class="post">
  5. <h2>
  6. {{ page.title }}
  7. </h2>
  8. <div>
  9. {% if page.previous %}
  10. <a href="{{ page.previous.url }}"><i class="fa fa-long-arrow-left"></i></a>
  11. {% else %}
  12. &nbsp;
  13. {% endif %}
  14. {{ page.date | date_to_string }}
  15. {% if page.next %}
  16. <a href="{{ page.next.url }}"><i class="fa fa-long-arrow-right"></i></a>
  17. {% else %}
  18. &nbsp;
  19. {% endif %}
  20. </div>
  21. {{ content }}
  22. </div>