mirror of
https://gitlab.com/OpenAlt/OpenAltRO/openalt_ro.git
synced 2026-09-24 14:26:49 +00:00
29 lines
No EOL
1.1 KiB
Text
29 lines
No EOL
1.1 KiB
Text
<div class="post-page post">
|
|
<% if(page.photos && page.photos.length) { %>
|
|
<div class="post-cover">
|
|
<img class="gallery" src="<%- config.root %><%- page.photos[0] %>" alt="<%- page.title || "Untitled" %>">
|
|
</div>
|
|
<% } %>
|
|
|
|
<div class="post-text-wrapper">
|
|
<div class="post-text">
|
|
<div class="post-header">
|
|
<h1 class="article"><%= page.title || "Untitled" %></h1>
|
|
<span class="smoll"><%- include('date', { date: page.date.toISOString() }) %> by <%= page.author %></span>
|
|
<p><%= page.description %></p>
|
|
</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>
|
|
</div>
|
|
</div> |