Sha256: 10987f92308c87113706da271473d825f5a7707d25fe370a777f723916683a88

Contents?: true

Size: 1.39 KB

Versions: 1

Compression:

Stored size: 1.39 KB

Contents

<div class="atomentry" id="article-<%= article.id %>">
  <h2 class="title">
    <%= (controller.action_name.include? 'permalink') ? article.title : link_to_permalink(article,article.title) %>
  </h2>

  <div class="author">
    Posted by <cite><%= author_link(article) %></cite>
    <abbr class="published" title="<%= article.published_at.xmlschema %>"><%= js_distance_of_time_in_words_to_now article.published_at %></abbr>
  </div>
  
  <div class="content">
    <% if controller.action_name == 'show' or controller.action_name == 'index' %>
      <% if article.excerpt? %>
        <%= article.excerpt %>
      <% else %>
        <%= article.html(:body) %>
        <div class="extended">
          <p><%= link_to_permalink article,"Continue reading..." %></p>
        </div>
      <% end %>
    <% else %>
      <%= article.html(:body) %>
      <div class="extended">
        <%= article.html(:extended) %>
      </div>
    <% end %>
  </div>

	<p class="info">
		<%= content_tag(:span, category_links(article) << ' | ', :class => 'categories') unless article.categories.empty? %>  
		<%= comments_link(article) << ' | ' if article.allow_comments? %>
		<% if controller.controller_name == 'articles' and controller.action_name == 'show' %>
			<%= content_tag(:span, tag_links(article) << ' | ', :class => 'tags') unless article.tags.empty? %>
			<a href="<%= @auto_discovery_url_atom %>">atom</a>
		<% end %>
	</p>
</div>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
typo-5.4 themes/dirtylicious/views/articles/_article.html.erb