_article_title.html.erb 823 Bytes
<% if @page.belongs_to_blog? || @page.belongs_to_forum?%>
  <% unless no_link %>
    <h1 class="title">
      <%= link_to(article.name, article.url) %>
    </h1>
  <% else %>
    <h1 class="title">
      <%= h(@page.title) %>
    </h1>
  <% end %>
  <% unless @page.lead.blank? %>
    <div class="preview">
      <%= @page.lead %>
    </div>
  <% end %>
  <span class="created-at">
    <span class="date">
      <%= show_date(@page.published_at) %>
    </span>
    <span class="author">
      <%= _(", by %s") % (@page.author ? link_to(@page.author_name, @page.author_url) : @page.author_name) %>
    </span>
  <% unless @no_comments %>
    <span class="comments">
      <%= (" - %s") % link_to_comments(@page)%>
    </span>
  <% end %>
  </span>
<% else %>
  <h1 class="title">
    <%= h(@page.title) %>
  </h1>
<% end %>