27 lines
No EOL
1 KiB
Text
27 lines
No EOL
1 KiB
Text
<!-- This is the template for the post. -->
|
|
<div class="post">
|
|
<div class="post-header">
|
|
<h1 class="article"><%= page.title || "Untitled" %></h1>
|
|
<% if(page.photos && page.photos.length) { %>
|
|
<div class="cover">
|
|
<img class="gallery" src="<%- config.root %><%- page.photos[0] %>" alt="<%- page.title || "Untitled" %>">
|
|
</div>
|
|
<% } %>
|
|
<p><%= page.description %></p>
|
|
<div class="date smoll">
|
|
<a href='<%= url_for(page.path) %>' class="page-date"><%- include('date', { date: page.date.toISOString() }) %></a>
|
|
</div>
|
|
</div>
|
|
<div class="post-content">
|
|
<%- page.content %>
|
|
</div>
|
|
<div class="post-footer">
|
|
<div class="tags smoll">
|
|
<% if (page.tags) { %>
|
|
<% page.tags.data.forEach(function(tag) { %>
|
|
<a href="<%= url_for('/tags/' + tag.name) %>">#<%= tag.name %></a>
|
|
<% }); %>
|
|
<% } else {console.log(page)} %>
|
|
</div>
|
|
</div>
|
|
</div> |