From 624385fbb4abce649c02c62f6a59ad3c6299df15 Mon Sep 17 00:00:00 2001 From: alexisben <alex@noesya.coop> Date: Mon, 10 Apr 2023 19:26:35 +0200 Subject: [PATCH] style --- .../stylesheets/extranet/pages/_posts.sass | 5 --- app/views/extranet/posts/posts/show.html.erb | 43 +++++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/app/assets/stylesheets/extranet/pages/_posts.sass b/app/assets/stylesheets/extranet/pages/_posts.sass index 4c657e529..6eea8a173 100644 --- a/app/assets/stylesheets/extranet/pages/_posts.sass +++ b/app/assets/stylesheets/extranet/pages/_posts.sass @@ -1,11 +1,6 @@ .posts-show header - figure position: relative - @include media-breakpoint-up(md) - display: inline-block - padding-left: 2.813rem - width: 25% picture img width: 100% &.with-credit::after diff --git a/app/views/extranet/posts/posts/show.html.erb b/app/views/extranet/posts/posts/show.html.erb index 5d27810de..68c956743 100644 --- a/app/views/extranet/posts/posts/show.html.erb +++ b/app/views/extranet/posts/posts/show.html.erb @@ -1,24 +1,29 @@ <% content_for :header do %> - <div class="header__info"> - <h1><%= @post %></h1> - <% if @post.published_at %> - <p>Publié le <%= l @post.published_at.to_date, format: :long %></p> - <% end %> - <% if @post.category %> - <p>Catégorie : <%= link_to @post.category, posts_category_path(slug: @post.category.slug) %></p> - <% end %> - </div> - <div class="header__additional_data"> - <% if @post.featured_image.attached? %> - <figure <% if @post.featured_image_credit.present? %>class="with-credit"<% end %>> - <%= kamifusen_tag @post.featured_image, class: 'img-fluid', width: 300 %> - <% if @post.featured_image_credit.present? %> - <figcaption tabindex="0"> - <%= sanitize @post.featured_image_credit %> - </figcaption> + <div class="row"> + <div class="header__info col-md-8"> + <h1><%= @post %></h1> + <p class="small"> + <% if @post.published_at %> + Publié le <%= l @post.published_at.to_date, format: :long %> + <% end %> + <% if @post.category %> + <br> + Catégorie : <%= link_to @post.category, posts_category_path(slug: @post.category.slug), class: "link" %> <% end %> - </figure> - <% end %> + </p> + </div> + <div class="col-md-4"> + <% if @post.featured_image.attached? %> + <figure class="<% if @post.featured_image_credit.present? %>with-credit<% end %>"> + <%= kamifusen_tag @post.featured_image, class: 'img-fluid', width: 300 %> + <% if @post.featured_image_credit.present? %> + <figcaption tabindex="0"> + <%= sanitize @post.featured_image_credit %> + </figcaption> + <% end %> + </figure> + <% end %> + </div> </div> <% end %> -- GitLab