layouts/page_meta.erb
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
----- filter: erb ----- <% author = @item[:author] || "Fabio Cevasco" pdf = false#%{<a href="/articles/#{@item[:permalink]}.pdf"><i class="fa fa-download"> </i>Download as PDF</a>} if @item[:pdf] %><div class="row"> <header class="col-md-9"> <h2><%= @item[:title] %></h2> <% if !@item[:subtitle].blank? then %> <h3><%= @item[:subtitle] %></h3> <% end %> </header> <% if @item[:type] == 'article' then %> <ul class="list-unstyled article-info col-md-3"> <li><i class="h3-quill-ink"></i> <time datetime="<%= @item[:date].to_iso8601_time %>"><%= @item[:date].strftime("%A, %B %d %Y") %></time></li> <li><i class="h3-tags"></i> <%= tags_for(@item) %></li> <%= "<li>#{pdf}</li>" if pdf %> </ul> <% end %> </div> |