mirror of
https://gitlab.com/OpenAlt/OpenAltRO/openalt_ro.git
synced 2026-09-24 14:26:49 +00:00
30 lines
No EOL
955 B
Text
30 lines
No EOL
955 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 })%>
|
|
<% }%>
|
|
|
|
<% if (page.type === "form") {%>
|
|
<iframe src="https://files.openalt.org/apps/forms/embed/sB49x3tBGkweEmFWQzi9mG8N" width="75%" height="100%" style="border: none"></iframe>
|
|
<% }%> |