project.ejs 1001 B

12345678910111213141516171819202122232425262728293031
  1. <% if(page.videos != undefined) { %>
  2. <% if(page.videos.length > 0) { %>
  3. <%- partial('_partial/video-player', {url: page.videos[0].url}) %>
  4. <% } %>
  5. <% } %>
  6. <% if(page.hero != undefined) { %>
  7. <%- partial('_partial/hero', { image : page.hero }) %>
  8. <% } %>
  9. <div id="cover"></div>
  10. <div class="project container up-spacer bottom-spacer">
  11. <div class="row">
  12. <div class="col-12">
  13. <% if (page.path){ %>
  14. <h1>
  15. <a href="<%- url_for(page.path) %>" itemprop="url"><%= page.title %></a>
  16. </h1>
  17. <% } else if (page.title){ %>
  18. <h1><%= page.title %></h1>
  19. <% } %>
  20. <% for (let i = 0; i < page.tags.data.length; i++) { %>
  21. <span class="badge badge-secondary"><%= page.tags.data[i].name %></span>
  22. <% } %>
  23. <i> – <%= timeAgo(new Date(page.date)) %></i>
  24. <hr>
  25. <div class="article-content" itemprop="articleBody">
  26. <%- page.content %>
  27. </div>
  28. </div>
  29. </div>
  30. </div>
  31. <%- //partial('_partial/about-author') %>