Sha256: 0e304ef649f6dac397e4cf095a0e88970d9c522c965144abda3dc2f8003bcef8
Contents?: true
Size: 716 Bytes
Versions: 39
Compression:
Stored size: 716 Bytes
Contents
<!doctype html> <html> <head> <meta charset="utf-8" /> <meta http-equiv='X-UA-Compatible' content='IE=edge;chrome=1' /> <% if is_blog_article? %> <title><%= current_article.title %></title> <% end %> </head> <body> <div id="main" role="main"> <% if is_blog_article? %> <article class="hentry"> <h1 class="entry-title"> <%= current_article.title %> <time class="updated"><%= current_article.date.strftime('%b %e %Y') %></time> </h1> <div class="entry-content"> <%= yield %> </div> </article> <% else %> <%= yield %> <% end %> </div> </body> </html>
Version data entries
39 entries across 19 versions & 1 rubygems