12345678910111213141516171819202122232425262728293031 |
- <% if(page.videos != undefined) { %>
- <% if(page.videos.length > 0) { %>
- <%- partial('_partial/video-player', {url: page.videos[0].url}) %>
- <% } %>
- <% } %>
- <% if(page.hero != undefined) { %>
- <%- partial('_partial/hero', { image : page.hero }) %>
- <% } %>
- <div id="cover"></div>
- <div class="project container up-spacer bottom-spacer">
- <div class="row">
- <div class="col-12">
- <% if (page.path){ %>
- <h1>
- <a href="<%- url_for(page.path) %>" itemprop="url"><%= page.title %></a>
- </h1>
- <% } else if (page.title){ %>
- <h1><%= page.title %></h1>
- <% } %>
- <% for (let i = 0; i < page.tags.data.length; i++) { %>
- <span class="badge badge-secondary"><%= page.tags.data[i].name %></span>
- <% } %>
- <i> – <%= timeAgo(new Date(page.date)) %></i>
- <hr>
- <div class="article-content" itemprop="articleBody">
- <%- page.content %>
- </div>
- </div>
- </div>
- </div>
- <%- //partial('_partial/about-author') %>
|