post.ejs 982 B

1234567891011121314151617181920212223242526272829
  1. <% if (page.hero_image){ %>
  2. <%- partial('_partial/hero', { image : `/${page.slug}/hero.jpg` }) %>
  3. <% } %>
  4. <div class="container up-spacer bottom-spacer-lg">
  5. <div class="row bottom-spacer">
  6. <div class="col-12">
  7. <h1><%= page.title %></h1>
  8. <i>
  9. By James Peret –
  10. <%= timeAgo(new Date(page.date)) %> in
  11. <% for (let i = 0; i < page.categories.data.length; i++) { %>
  12. <span class="badge badge-secondary"><%= page.categories.data[i].name %></span>
  13. <% } %>
  14. </i>
  15. <hr>
  16. <div class="article-content" itemprop="articleBody">
  17. <%- page.content %>
  18. </div>
  19. </div>
  20. </div>
  21. <div class="row bottom-spacer justify-content-center" style='margin-top: 60px; margin-bottom: 40px'>
  22. <div class="col-12">
  23. <div id="disqus_thread"></div>
  24. </div>
  25. </div>
  26. </div>
  27. </div>
  28. <%- partial('_partial/about-author') %>
  29. <%- partial('_partial/next-post', { post : next_post(page, site.posts) }) %>