mirror of
https://gitlab.com/OpenAlt/OpenAltRO/openalt_ro.git
synced 2026-09-24 14:26:49 +00:00
26 lines
No EOL
771 B
Text
26 lines
No EOL
771 B
Text
<div class="page">
|
|
<% 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>
|
|
</div>
|
|
<div class="post-content">
|
|
<%- page.content %>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<% if (page.type === "Contact") {%>
|
|
<%- include("_partial/members", { page: page })%>
|
|
<% }%>
|
|
|
|
<% if (page.type === "Partners") {%>
|
|
<%- include("_partial/partners", { page: page })%>
|
|
<% }%> |