zeus.ugent.be/layouts/eventpost.erb

77 lines
2.9 KiB
Text
Raw Normal View History

2016-07-18 11:06:45 +02:00
<% content_for :head do %>
2017-05-01 23:47:53 +02:00
<% if item[:image] %>
<meta property="og:image" content="<%= item[:image] %>" />
2017-05-01 23:47:53 +02:00
<% end %>
2016-07-18 11:15:03 +02:00
<meta property="og:title" content="<%= item[:title] %>" />
2016-07-19 13:55:27 +02:00
<meta property="og:type" content="article" />
<meta property="og:url" content="<%= url_for(item) %>" />
2016-10-10 19:16:08 +02:00
<meta property="og:description" content="<%= item[:description] %>" />
<meta property="og:site_name" content="Zeus WPI" />
2017-05-01 23:47:53 +02:00
<meta name="twitter:label1" value="Time" />
<meta name="twitter:data1" value="<%= item[:time].strftime '%A %d %B %Y %H:%M' %>" />
<meta name="twitter:label2" value="Place" />
<meta name="twitter:data2" value="<%= item[:location] %>" />
2016-10-10 19:16:08 +02:00
<meta name="twitter:card" content="summary_large_image" />
2016-07-18 11:06:45 +02:00
<% end %>
<% if item[:banner] %>
2016-10-10 13:59:06 +02:00
<section class="hero is-medium is-primary is-bold" style="background-image:url('<%= item[:banner] %>');background-position:center;">
<% elsif item[:color] %>
2017-02-14 15:03:38 +01:00
<section class="hero is-medium is-primary is-bold" style="background-image: linear-gradient(to top right,rgba(255,255,255,0),rgba(0,0,0,.60)); background-color:<%= item[:color] %>;">
<% else %>
2016-10-03 20:52:01 +02:00
<section class="hero is-medium is-primary is-bold">
<% end %>
2016-07-27 20:27:28 +02:00
<div class="hero-head">
2016-09-02 00:05:38 +02:00
<%= render '/partials/_navbar.*', zeus_logo_color: :white %>
2016-07-12 23:58:08 +02:00
</div>
2016-10-03 19:21:29 +02:00
<div class="hero-body">
2016-07-27 20:27:28 +02:00
<div class="container">
2016-09-13 17:13:43 +02:00
<div class="columns">
<div class="column has-vertical-center">
<div class="header-text <%= item[:header_text_background] ? 'light-background' : '' %>">
2017-04-23 12:46:47 +02:00
<p class="title is-1-responsive event-title">
<b>
<%= item[:title] %>
</b>
<span class="event-social-icons">
<% if item[:facebook] %>
<a href="<%= item[:facebook] %>">
<%= fa :facebook %>
</a>
<% end %>
<a href="<%= item.path rep: :ical %>">
<%= fa :calendar %>
</a>
</span>
</p>
2017-04-23 12:46:47 +02:00
<p class="subtitle is-3-responsive">
<%= item[:description] %>
</p>
2017-04-23 12:46:47 +02:00
<ul class="fa-ul is-4-responsive">
2017-04-21 14:37:31 +02:00
<li><%= fa 'clock-o', li: true %><%= item[:time].strftime '%A %d %B %Y %H:%M' %></li>
<li><%= fa 'map-marker', li: true %><%= item[:location] %></li>
</ul>
</div>
2016-09-13 17:13:43 +02:00
</div>
2017-04-21 14:37:31 +02:00
<% if item[:image] %>
2016-09-13 17:13:43 +02:00
<div class="is-narrow column banner-image">
2017-04-21 14:37:31 +02:00
<img src="<%= item[:image] %>" alt="banner">
2016-09-13 17:13:43 +02:00
</div>
2017-04-21 14:37:31 +02:00
<% end %>
2016-09-13 17:13:43 +02:00
</div>
2016-07-27 20:27:28 +02:00
</div>
</div>
</section>
<section class="section">
<div class="columns">
2016-08-27 20:15:00 +02:00
<div class="column is-8 is-offset-2">
2017-04-23 12:46:47 +02:00
<div class="content has-text-justified is-medium-responsive">
2016-07-28 17:56:33 +02:00
<%= yield %>
</div>
2017-04-24 21:11:18 +02:00
<iframe height="400" style="width:100%" src="<%= locationlink item[:locationlink] %>" allowfullscreen> </iframe>
2016-09-02 00:05:38 +02:00
</div>
</div>
2016-07-27 20:27:28 +02:00
</section>