zeus.ugent.be/layouts/blogpost.erb

44 lines
1.5 KiB
Plaintext
Raw Normal View History

2017-05-18 13:33:43 +00:00
<% content_for :head do %>
<meta property="og:title" content="<%= item[:title] %>" />
<meta property="og:type" content="article" />
2018-03-11 13:27:30 +00:00
<meta property="og:image" content="" />
2017-05-18 13:33:43 +00:00
<meta property="og:url" content="<%= url_for(item) %>" />
<meta property="og:description" content="<%= item[:description] %>" />
<meta property="og:site_name" content="Zeus WPI" />
2018-03-11 13:27:30 +00:00
<meta property="article:author" content="<%= @item[:author] %>">
2017-05-18 13:33:43 +00:00
<meta name="twitter:label1" value="Author" />
<meta name="twitter:data1" value="<%= @item[:author] %>" />
<meta name="twitter:label2" value="Created at" />
<meta name="twitter:data2" value="<%= @item[:created_at] %>" />
2017-05-18 13:33:43 +00:00
<meta name="twitter:card" content="summary_large_image" />
2018-07-10 21:43:10 +00:00
<!-- Animate.css -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css">
2021-02-26 14:24:40 +00:00
<!-- KaTeX math css -->
<link rel="stylesheet" type="text/css" href="/assets/stylesheets/katex.css">
2017-05-18 13:33:43 +00:00
<% end %>
2017-04-20 12:20:32 +00:00
<div class="blog-heading">
<div class="titlewrap">
<h1 class="title is-1-responsive has-text-centered animated fadeIn">
2017-04-20 12:20:32 +00:00
<%= item[:title] %>
</h1>
<% if item[:author] %>
<h2 class="subtitle is-4-responsive has-text-centered animated fadeInLeft">
2017-04-20 12:20:32 +00:00
door <%= item[:author] %>
</h2>
<% end %>
2017-04-21 13:45:53 +00:00
<div class="details animated fadeInRight">
2017-04-20 12:20:32 +00:00
<small>
Geschreven op <%= item[:created_at] %><br>
2017-04-20 12:20:32 +00:00
Leestijd: <%= reading_time @item %>
</small>
</div>
</div>
</div>
2017-04-21 13:45:53 +00:00
<div class="columns animated fadeIn">
<%= yield %>
</div>