From 67b20b8dd9880e917efbab17c3c274ce785339db Mon Sep 17 00:00:00 2001 From: Arnaud Levy <contact@arnaudlevy.com> Date: Wed, 27 Jul 2022 22:08:53 +0200 Subject: [PATCH] headers --- .../websites/pages/preview.html.erb | 21 ++++++++++++++++--- .../websites/posts/preview.html.erb | 21 ++++++++++++++++--- 2 files changed, 36 insertions(+), 6 deletions(-) diff --git a/app/views/admin/communication/websites/pages/preview.html.erb b/app/views/admin/communication/websites/pages/preview.html.erb index 2350e7912..1e119534c 100644 --- a/app/views/admin/communication/websites/pages/preview.html.erb +++ b/app/views/admin/communication/websites/pages/preview.html.erb @@ -1,4 +1,19 @@ -<div class="container"> - <%= @page.text.to_s %> -</div> +<header class="hero"> + <%= kamifusen_tag @page.best_featured_image if @page.best_featured_image.attached? %> + <div class="container"> + <div> + <h1><%= @page.title %></h1> + </div> + <ol class="breadcrumb" itemscope="" itemtype="https://schema.org/BreadcrumbList"> + <li class="breadcrumb-item" itemprop="itemListElement" itemscope="" itemtype="https://schema.org/ListItem"> + <a itemprop="item"><span itemprop="name">Accueil</span></a> + <meta itemprop="position" content="1"> + </li> + <li class="breadcrumb-item active" aria-current="page" itemprop="itemListElement" itemscope="" itemtype="https://schema.org/ListItem"> + <span itemprop="name"><%= @page.title %></span> + <meta itemprop="position" content="2"> + </li> + </ol> + </div> +</header> <%= render 'admin/communication/blocks/preview', about: @page %> diff --git a/app/views/admin/communication/websites/posts/preview.html.erb b/app/views/admin/communication/websites/posts/preview.html.erb index a390bba28..5b376edcd 100644 --- a/app/views/admin/communication/websites/posts/preview.html.erb +++ b/app/views/admin/communication/websites/posts/preview.html.erb @@ -1,4 +1,19 @@ -<div class="container"> - <%= @post.text.to_s %> -</div> +<header class="hero"> + <%= kamifusen_tag @post.featured_image if @post.featured_image.attached? %> + <div class="container"> + <div> + <h1><%= @post.title %></h1> + </div> + <ol class="breadcrumb" itemscope="" itemtype="https://schema.org/BreadcrumbList"> + <li class="breadcrumb-item" itemprop="itemListElement" itemscope="" itemtype="https://schema.org/ListItem"> + <a itemprop="item"><span itemprop="name">Accueil</span></a> + <meta itemprop="position" content="1"> + </li> + <li class="breadcrumb-item active" aria-current="page" itemprop="itemListElement" itemscope="" itemtype="https://schema.org/ListItem"> + <span itemprop="name"><%= @post.title %></span> + <meta itemprop="position" content="2"> + </li> + </ol> + </div> +</header> <%= render 'admin/communication/blocks/preview', about: @post %> -- GitLab