next-post.ejs 461 B

123456789101112131415
  1. <div class="container-fluid">
  2. <div class="row-fluid next-post">
  3. <img class="img-fluid hero" src="<%= `/${post.slug}/hero.jpg` %>">
  4. </div>
  5. <div class="row justify-content-center next-post-link">
  6. <div class="col-12 col-6-md">
  7. <h4>Next Story</h4>
  8. <h2>
  9. <a href="<%= url_for(post.path) %>">
  10. <%= post.title %>
  11. </a>
  12. </h2>
  13. </div>
  14. </div>
  15. </div>