post.njk 769 B

12345678910111213141516171819202122232425
  1. {% include './../layouts/header.njk' %}
  2. <h3 class="judul">{{ title }}</h3>
  3. <p class="subtitle">{{ subtitle or ringkasan }}</p>
  4. {{ content | safe }}
  5. <div class="post-navigation">
  6. <div class="nav_kiri">
  7. {%- set previousPost = search.previousPage(url, "jurnal") %}
  8. {%- if previousPost %}
  9. <strong>← <a href="{{ previousPost.data.url }}" rel="prev">{{ previousPost.data.title }}</a></strong>
  10. {% endif %}
  11. </div>
  12. <div class="nav_kanan">
  13. {%- set nextPost = search.nextPage(url, "jurnal") %}
  14. {%- if nextPost %}
  15. <strong><a href="{{ nextPost.data.url }}" rel="next">{{ nextPost.data.title }}</a> →</strong>
  16. {% endif %}
  17. </div>
  18. </div>
  19. {% include './../content/subs.njk' %}
  20. {% include './../layouts/footer.njk' %}