-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapplication.html.erb
More file actions
28 lines (27 loc) · 1.19 KB
/
application.html.erb
File metadata and controls
28 lines (27 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html>
<head>
<title><%= content_for?(:title) ? content_for(:title) : 'Early Arrivals Records Search (EARS)' %></title>
<%= stylesheet_link_tag :application %>
<%= csrf_meta_tags %>
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
</head>
<body>
<div class="container">
<%= link_to image_tag(asset_path('nara.jpg'), alt: 'Chinese Immigration to the United States collection home'), "https://web.archive.org/web/20220124061848/https://bancroft.berkeley.edu/collections/chinese-immigration-to-the-united-states-1884-1944/index.html" %>
</div>
<div class="container">
<h2 class="display-3">The Early Arrivals Records Search (EARS)</h2>
<h4>A dataset from Investigation Arrival Case Files, San Francisco and Hawaii, Records of the U.S. Immigration and Naturalization Service, Record Group 85, National Archives at San Francisco.</h3>
</div>
<main>
<%= yield %>
</main>
<div id="copyright" >
<ul class="menu">
<li><a href="http://www.lib.berkeley.edu/visit/bancroft">The Bancroft Library</a></li>
<li>© University of California Regents. All rights reserved.</li>
</ul>
</div>
</body>
</html>