Sha256: 79d59e1b7ff71f35fecd695e9e007b13ece88724d16dec8a1a82c18f62c137f1

Contents?: true

Size: 958 Bytes

Versions: 4

Compression:

Stored size: 958 Bytes

Contents

<% if user_can_chive? %>
  <div class="row mb-4">
    <nav class="col text-right">
      <%= link_to "Edit", edit_article_path(@article), class: 'btn btn-outline-primary' %>
      <%= render partial: 'delete_modal' %>
    </nav>
  </div>
<% end %>

<section>
  <article>
    <div class="row">
      <% if @article.image.attached? %>
        <div class="col-auto">
          <%= image_tag @article.image.variant(resize: '400x300') %>
        </div>
      <% end %>
      <div class="col-md">
        <h1><%= @article.title %></h1>
        <address>by <%= @article.byline %> on <%= @article.published_at %></address>
        <p>
          <small><%= @article.tag_list.to_s %></small>
        </p>
        <%= render 'status', article: @article %>
      </div>
    </div>
    <div class="row">
      <div class="col">
        <%= raw @article.body %>
      </div>
    </div>
  </article>
</section>

<nav>
  <%= link_to 'More Articles', articles_path %>
</nav>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
chive-0.2.3 app/views/chive/articles/show.html.erb
chive-0.2.2 app/views/chive/articles/show.html.erb
chive-0.2.1 app/views/chive/articles/show.html.erb
chive-0.2.0 app/views/chive/articles/show.html.erb