From 3c6cb681c06de2aa122b5cc7cb242f64fcb8d9c3 Mon Sep 17 00:00:00 2001
From: Arnaud Levy <contact@arnaudlevy.com>
Date: Fri, 24 Dec 2021 10:46:11 +0100
Subject: [PATCH] home

---
 app/models/communication/website/home.rb                   | 2 +-
 .../blobs/{jekyll.html.erb => static.html.erb}             | 0
 app/views/admin/communication/website/home/static.html.erb | 7 ++++---
 3 files changed, 5 insertions(+), 4 deletions(-)
 rename app/views/active_storage/blobs/{jekyll.html.erb => static.html.erb} (100%)

diff --git a/app/models/communication/website/home.rb b/app/models/communication/website/home.rb
index fca79028c..54d68f7aa 100644
--- a/app/models/communication/website/home.rb
+++ b/app/models/communication/website/home.rb
@@ -44,7 +44,7 @@ class Communication::Website::Home < ApplicationRecord
 
   # Override from WithGithubFiles
   def github_path_generated
-    '_pages/index.html'
+    'content/_index.html'
   end
 
 end
diff --git a/app/views/active_storage/blobs/jekyll.html.erb b/app/views/active_storage/blobs/static.html.erb
similarity index 100%
rename from app/views/active_storage/blobs/jekyll.html.erb
rename to app/views/active_storage/blobs/static.html.erb
diff --git a/app/views/admin/communication/website/home/static.html.erb b/app/views/admin/communication/website/home/static.html.erb
index 4e8cb8499..61c67859e 100644
--- a/app/views/admin/communication/website/home/static.html.erb
+++ b/app/views/admin/communication/website/home/static.html.erb
@@ -1,11 +1,12 @@
 ---
-layout: home
-permalink: "/"
 title: >
-  <%= @website.title %>
+  <%= @home.website.name %>
+breadcrumb_title: "Accueil"
 <% if @home.featured_image.attached? %>
 image: "<%= @home.featured_image.blob.id %>"
 image_alt: "<%= @home.featured_image_alt %>"
 <% end %>
+description: >
+  <%= strip_tags(@home.text.to_s).chomp %>
 ---
 <%= prepare_for_github @home.text, @home.university %>
-- 
GitLab