diff --git a/app/views/showcase/websites/show.html.erb b/app/views/showcase/websites/show.html.erb index fc640df27d7f8ff8b619c835c8df3dd9662d1c2d..43bca749375a5db3cb6dcfe6073ccfe82822c86e 100644 --- a/app/views/showcase/websites/show.html.erb +++ b/app/views/showcase/websites/show.html.erb @@ -21,16 +21,22 @@ <%= contact_link @website.repository_url, :github %> </div> <div class="mb-5"> + <p class="small text-muted">Thèmes</p> <% @website.showcase_tags.each do |tag| %> <%= link_to tag, showcase_tag_path(tag.slug), class: 'btn btn-sm btn-outline-light text-dark rounded-pill' %> <% end %> </div> - <% if @website.university.logo.attached? %> - <%= image_tag @website.university.logo, - width: 200, - class: 'img-fluid p-3' %> - <% end %> + <div class="mb-5"> + <p class="small text-muted">Organisation</p> + <% if @website.university.logo.attached? %> + <%= image_tag @website.university.logo, + width: 200, + class: 'img-fluid p-3' %> + <% else %> + <p><%= @website.university %></p> + <% end %> + </div> </div> </div> \ No newline at end of file