1
0

entry_index.html 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {% extends "base.html" %}
  2. {% block content %}
  3. <main id="content" class="content" role="main">
  4. <div class="extra-pagination inner">
  5. <nav class="pagination" role="pagination">
  6. <span class="page-number"> Page 1 of 2 </span>
  7. <a class="older-posts" href="/jasper/page2/" title="Next Page">Older Posts &raquo;</a>
  8. </nav>
  9. </div>
  10. <!-- This is the post loop - each post will be output using this markup -->
  11. {% for entry in entries %}
  12. <article class="post">
  13. <header class="post-header">
  14. <h2 class="post-title"><a href="{{entry.permalink}}">{{ entry.title }}</a></h2>
  15. </header>
  16. <section class="post-excerpt">
  17. <p>This is just an ipsis verbis copy of the first example running on the Ghost Demo. This shows how you can use html styling to achieve... <a class="read-more" href="{{entry.permalink}}">&raquo;</a></p>
  18. </section>
  19. <footer class="post-meta">
  20. <img class="author-thumb" src="/media/images/casper.png" alt="Author image" nopin="nopin" />
  21. <!-- author -->
  22. <a href='/jasper/author/casper'>Casper McFadden</a>
  23. on
  24. {% for tag in entry.tags %}
  25. <a href="{{tag.slug}}">{{tag.name}}</a>{% if not loop.last %}, {% endif %}
  26. {% endfor %}
  27. <time class="post-date" datetime="{{entry.publish_date}}">{{ entry.publish_date }}</time>
  28. </footer>
  29. </article>
  30. {% endfor %}
  31. <nav class="pagination" role="pagination">
  32. <span class="page-number"> Page 1 of 2 </span>
  33. <a class="older-posts" href="/jasper/page2/" title="Next Page">Older Posts &raquo;</a>
  34. </nav>
  35. </main>
  36. {% block footer %}
  37. <footer class="site-footer clearfix">
  38. <section class="copyright"><a href="/jasper/">Finding The Way Home</a> &copy; 2016</section>
  39. <section class="poweredby">Proudly published with <a href="https://jekyllrb.com/">Jekyll</a> using <a href="https://github.com/biomadeira/jasper">Jasper</a></section>
  40. </footer>
  41. {% endblock %}
  42. </div>
  43. {% endblock content %}