post.html 714 B

12345678910111213141516171819202122232425
  1. ---
  2. layout: default
  3. ---
  4. <section style="padding-bottom: 0">
  5. <article class="wrapper">
  6. <div class="post-header">
  7. <h2 class="red-title" >{{ page.title }}</h2>
  8. <ul class="tags">
  9. {% for tag in page.tags %}
  10. <li><a href="/tags#{{ tag }}">{{ tag }}</a></li>
  11. {% unless forloop.last %}
  12. {% endunless %}
  13. {% endfor %}
  14. </ul>
  15. <div class="line-highlight">{% if page.date %}{{ page.date | date: '%d %b %Y' }}{% else %}<i class="fa fa-paw" aria-hidden="true"></i>{% endif %}</div>
  16. </div>
  17. <div class="post-content">
  18. {{ content }}
  19. </div>
  20. {% include post-pagination.html %}
  21. {% include share.html %}
  22. </article>
  23. </section>
  24. {% include comments.html %}