diff --git a/app/models/collection.rb b/app/models/collection.rb index 246913ada..055490e48 100644 --- a/app/models/collection.rb +++ b/app/models/collection.rb @@ -2,6 +2,15 @@ # Generated by hyrax:models class Collection < ActiveFedora::Base + + property :bulkrax_identifier, predicate: ::RDF::URI("https://hykucommons.org/terms/bulkrax_identifier"), multiple: false do |index| + index.as :stored_searchable, :facetable + end + + property :collection_subtitle, predicate: ::RDF::URI('https://hykucommons.org/terms/collection_subtitle') do |index| + index.as :stored_searchable, :facetable + end + include ::Hyrax::CollectionBehavior # You can replace these metadata if they're not suitable include Hyrax::BasicMetadata diff --git a/app/models/file_set.rb b/app/models/file_set.rb index a4f6deacb..bd4303f00 100644 --- a/app/models/file_set.rb +++ b/app/models/file_set.rb @@ -2,5 +2,13 @@ # Generated by hyrax:models:install class FileSet < ActiveFedora::Base + property :is_derived, + predicate: ::RDF::URI.intern('https://hykucommons.org/terms/isDerived'), + multiple: false do |index| + index.as :stored_searchable + end + property :bulkrax_identifier, predicate: ::RDF::URI("https://hykucommons.org/terms/bulkrax_identifier"), multiple: false do |index| + index.as :stored_searchable, :facetable + end include ::Hyrax::FileSetBehavior end diff --git a/app/views/_head_tag_extras.html.erb b/app/views/_head_tag_extras.html.erb index d690322c8..36f412599 100644 --- a/app/views/_head_tag_extras.html.erb +++ b/app/views/_head_tag_extras.html.erb @@ -1,4 +1,5 @@ <%= render_gtm_head(request.original_url) %> + diff --git a/app/views/_logo.html.erb b/app/views/_logo.html.erb index 08eca88bd..5d786ed7f 100644 --- a/app/views/_logo.html.erb +++ b/app/views/_logo.html.erb @@ -1,10 +1,12 @@ -<% if logo_image %> - - - <%= image_tag logo_image, alt: block_for(name: 'logo_image_text') %> - -<% else %> - - <%= application_name %> - +<% unless controller.controller_name == 'splash' %> + <% if logo_image %> + + + <%= image_tag logo_image, alt_text: block_for(name: 'logo_image_text') %> + + <% else %> + + <%= application_name %> + + <% end %> <% end %> diff --git a/app/views/hyrax/admin/stats/show.html.erb b/app/views/hyrax/admin/stats/show.html.erb index 4996fe330..44713ae8f 100644 --- a/app/views/hyrax/admin/stats/show.html.erb +++ b/app/views/hyrax/admin/stats/show.html.erb @@ -2,94 +2,94 @@