Sha256: 2ad52f8e4186151903e75c330c5729c6429569928fd461141356cec5c95cc21c

Contents?: true

Size: 765 Bytes

Versions: 3

Compression:

Stored size: 765 Bytes

Contents

<% provide(:title, translated_attribute(post.title)) %>

<% add_decidim_meta_tags({
  title: translated_attribute(post.title),
  description: translated_attribute(post.body),
  url: post_url(post.id)
}) %>
<div class="row">
  <div class="columns medium-7 mediumlarge-8">
    <div class="row column view-header">
      <h2 class="heading2"><%= translated_attribute post.title %></h2>
      <%= render partial: "author_data", locals: { post: post } %>
    </div>
    <div class="section">
      <p><%= sanitize translated_attribute post.body %></p>
    </div>
  </div>
  <div id="most-commented" class="columns medium-5 mediumlarge-4 large-4">
    <%= render partial: "sidebar_blog", locals: {posts: posts_most_commented} %>
  </div>
</div>

<%= comments_for post %>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
decidim-blogs-0.11.2 app/views/decidim/blogs/posts/show.html.erb
decidim-blogs-0.11.1 app/views/decidim/blogs/posts/show.html.erb
decidim-blogs-0.11.0.pre1 app/views/decidim/blogs/posts/show.html.erb