mirror of
https://gitlab.com/OpenAlt/OpenAltRO/openalt_ro.git
synced 2026-09-24 14:26:49 +00:00
50 lines
1.4 KiB
Text
50 lines
1.4 KiB
Text
|
|
|
|
<% if(page.event.video != "TBD") { %>
|
|
<div>
|
|
<%- page.event.video %>
|
|
</div>
|
|
<%} %>
|
|
|
|
<div>
|
|
<h1 class="event">
|
|
<%- page.event.date %> at <%- page.event.time %>
|
|
</h1>
|
|
</div>
|
|
|
|
<% if(page.event.program != "TBD") { %>
|
|
<div>
|
|
<h2> AGENDA </h2>
|
|
<!-- When agenda is public -->
|
|
<% page.event.program.forEach(function(item, index) { %>
|
|
<h2 class="program"><%- item.name %> by <a href="<%- item.speaker.url %>"><%- item.speaker.name %></a></h2>
|
|
<% if (index < page.event.program.length - 1) { %>
|
|
<h2 class="program break">B R E A K</h2>
|
|
<% } %>
|
|
<% }) %>
|
|
</div>
|
|
<% } %>
|
|
|
|
<div>
|
|
<% if(page.event.place != "TBD") { %>
|
|
<h3>
|
|
<a href='<%- page.event.place.link %>'><i class="fa fa-map-marker-alt"></i> <%- page.event.place.name %></a>
|
|
</h3>
|
|
<% if(page.event.place.osm != "TBD" || page.event.place.osm != "") { %>
|
|
<span class="osm"><%- page.event.place.osm %></span>
|
|
<% } %>
|
|
<%} else { %>
|
|
<h3>
|
|
<i class="fa fa-map-marker-alt"></i> TBD
|
|
</h3>
|
|
<% } %>
|
|
</div>
|
|
|
|
<div class="smoll">
|
|
Would you like to speak on this or our next meetup? <br> Submit your talk here: <a href="http://speakers.openalt.ro/">speakers.openalt.ro</a>.
|
|
</div>
|
|
|
|
<div class="post-content">
|
|
<%- page.content %>
|
|
</div>
|
|
|