Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added app/assets/images/iui-library.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed app/assets/images/iupui-library.png
Binary file not shown.
7 changes: 7 additions & 0 deletions app/assets/stylesheets/components/footer.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#footer a {
text-decoration: underline;
}

.bottom-nav a {
text-decoration: underline;
}
21 changes: 21 additions & 0 deletions app/views/layouts/boilerplate.html.erb
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<!DOCTYPE html>
<!--[if lt IE 7]> <html lang="en" class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html lang="en" class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html lang="en" class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html lang="en" class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title><%= content_for?(:page_title) ? yield(:page_title) : default_page_title %></title>
<meta name="viewport" content="width=device-width">
<%= csrf_meta_tag %>
<%= stylesheet_link_tag 'application' %>
<%= javascript_include_tag 'application' %>
</head>
<body>

<%= content_for?(:body) ? yield(:body) : yield %>

<%= render 'shared/ajax_modal' %>
</body>
</html>
18 changes: 13 additions & 5 deletions app/views/shared/_footer.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,18 @@
<div class=" bg-mahogany bottom-nav">
<div class="grid thirds text-center">
<div class="grid-item">
<%= link_to 'https://ulib.iupui.edu' do %>
<%= image_tag 'iupui-library.png', class: 'lockup' %>
<%= link_to 'https://library.indianapolis.iu.edu' do %>
<%= image_tag 'iui-library.png', class: 'lockup', alt: 'IU Indianapolis University Library' %>
<% end %>
</div>
<div class="grid-item">
<%= link_to 'https://libraries.indiana.edu' do %>
<%= image_tag 'iu-libraries.png', class: 'lockup' %>
<%= image_tag 'iu-libraries.png', class: 'lockup', alt: 'Indiana University Libraries' %>
<% end %>
</div>
<div class="grid-item">
<%= link_to 'https://uits.iu.edu' do %>
<%= image_tag 'uits.png', class: 'lockup' %>
<%= image_tag 'uits.png', class: 'lockup', alt: 'University Information Technology Services' %>
<% end %>
</div>
</div>
Expand All @@ -31,7 +31,15 @@
<%end %>
<div class="container-fluid container-fluid-thin small text-center">
<p>
<%= link_to 'Harmful Language Statement', 'https://libraries.indiana.edu/harmful-language-statement' %>
<%= link_to 'Accessibility Support', 'https://libraries.indiana.edu/digital-materials-accessibility', title: "Request accessible materials and find out more about Libraries website accessibility and facilities accessibility." %> |
<%= link_to 'Harmful Language Statement', 'https://libraries.indiana.edu/harmful-language-statement', title: "Learn more about how harmful language is managed in archival and special materials collections and how to report harmful language you may encounter." %>
</p>
<p>
This site is a
<%= link_to 'Designated Archival Repository',
'https://libraries.indiana.edu/designated-archival-repository',
title: "Learn more about why this site is a Designated Archival Repository."
%>, and some content may not meet current accessibility standards.
</p>
</div>
</div>
Expand Down