Search across our collections, digital materials, and more.
welcome_search_label: "Find what you're looking for:" welcome_page_title: ArchivesSpace Public Interface And the default welcome_message above is html with paragraph tags. So you should be able to include multiple paragraphs or other markup or styling. If you want to make deeper changes, you want to edit the view templates and add them to the local plugin as well. Read the Rails Guide for Layout and Rendering: https://guides.rubyonrails.org/layouts_and_rendering.htmlSearch across our collections, digital materials, and more.
welcome_search_label: "Find what you're looking for:" welcome_page_title: ArchivesSpace Public Interface And the default welcome_message above is html with paragraph tags. So you should be able to include multiple paragraphs or other markup or styling. If you want to make deeper changes, you want to edit the view templates and add them to the local plugin as well. Read the Rails Guide for Layout and Rendering: https://guides.rubyonrails.org/layouts_and_rendering.html along with the ArchivesSpace docs on customization. If you view the log file when you are accessing a page, you will see which controller is called as well as all of the views that are rendered for the page requested: [java] I, [2019-12-09T14:42:51.500361 #52422] INFO -- : Started GET "/" for 0:0:0:0:0:0:0:1 at 2019-12-09 14:42:51 -0500 [java] I, [2019-12-09T14:42:51.626236 #52422] INFO -- : Processing by WelcomeController#show as HTMLI, [2019-12-09T14:42:51.626918 #52422] INFO -- : Processing by WelcomeController#show as HTML [java] [java] I, [2019-12-09T14:42:52.917277 #52422] INFO -- : Rendering welcome/show.html.erb within layouts/application [java] I, [2019-12-09T14:42:52.961968 #52422] INFO -- : Rendered shared/_search.html.erb (25.9ms) [java] I, [2019-12-09T14:42:52.963225 #52422] INFO -- : Rendered welcome/show.html.erb within layouts/application (45.1ms) [java] I, [2019-12-09T14:42:52.917654 #52422] INFO -- : Rendering welcome/show.html.erb within layouts/application [java] I, [2019-12-09T14:42:52.962609 #52422] INFO -- : Rendered shared/_search.html.erb (25.9ms) [java] I, [2019-12-09T14:42:52.963542 #52422] INFO -- : Rendered welcome/show.html.erb within layouts/application (45.1ms) [java] I, [2019-12-09T14:43:05.707996 #52422] INFO -- : Rendered shared/_metadata.html.erb (5.5ms) [java] I, [2019-12-09T14:43:05.708551 #52422] INFO -- : Rendered shared/_metadata.html.erb (5.5ms) [java] I, [2019-12-09T14:43:05.719336 #52422] INFO -- : Rendered shared/_skipnav.html.erb (4.8ms) [java] I, [2019-12-09T14:43:05.731258 #52422] INFO -- : Rendered shared/_header.html.erb (8.2ms) [java] I, [2019-12-09T14:43:05.749501 #52422] INFO -- : Rendered shared/_navigation.html.erb (12.5ms) [java] I, [2019-12-09T14:43:05.718912 #52422] INFO -- : Rendered shared/_skipnav.html.erb (4.8ms) [java] I, [2019-12-09T14:43:05.730940 #52422] INFO -- : Rendered shared/_header.html.erb (8.2ms) [java] I, [2019-12-09T14:43:05.749000 #52422] INFO -- : Rendered shared/_navigation.html.erb (12.5ms) [java] I, [2019-12-09T14:43:05.758603 #52422] INFO -- : Rendered shared/_footer.html.erb (4.1ms) [java] I, [2019-12-09T14:43:05.760572 #52422] INFO -- : Completed 200 OK in 14131ms (Views: 12860.0ms) [java] The likeliest templates to modify for branding are probably welcome/show, shared/_header, shared/_footer, and maybe shared/_search . If you look at public/app/views/welcome/show.html.erb, all of those t() function calls are getting locale translations, so if your locale is English, t( ?brand.welcome_message? ) is replaced by the value of en.brand.welcome_message. So you need to look at the page templates if you want to know where some particular text comes from. ( Sometimes, easier to go the other direction: search for a particular text like ?Welcome to ArchivesSpace? in .yml files, then ack thru the view templates for ?brand.welcome_head? to see where it?s used. ) If you want to make changes to that page, copy it into plugins/local/public/views/welcome/show.html.erb ( after creating needed directories ) Any other views you change should be similarly be copied into the corresponding position in plugin directory.