jipiboily/monologue

View on GitHub
app/views/monologue/posts/_post_header.html.erb

Summary

Maintainability
Test Coverage
<header class="post-header">
  <h1><%= link_to post.title, post.full_url %></h1>
  <div class="posted">
    <span data-monologue="time">
      <time datetime="<%= post.published_at %>">
        <%= I18n.localize(post.published_at.to_date, format: :long) %>
      </time>
    </span>
    <span data-monologue="user">
      <%= post.user.name %>
    </span>
    <span data-monologue="disqus">
      <a href="<%= post.full_url + "#disqus_thread" %>"></a>
    </span>
  </div>
</header>