Skip to content

Commit 14732fc

Browse files
committed
giving page layout
1 parent 3f7d75c commit 14732fc

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed

app/assets/stylesheets/giving.scss

Whitespace-only changes.

app/views/layouts/giving.html.erb

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<!-- Required meta tags -->
5+
<meta charset="utf-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
7+
8+
<!-- Bootstrap CSS -->
9+
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
10+
<link href="https://fonts.googleapis.com/css?family=Allura" rel="stylesheet">
11+
<%= stylesheet_link_tag comfy_cms_render_css_path(@cms_site.id, @cms_layout.identifier) %>
12+
13+
<title>
14+
<% if content_for(:title) %>
15+
<%= yield(:title) %> - UofA Libraries
16+
<% elsif @cms_page %>
17+
<%= @cms_page.label %> - UofA Libraries
18+
<% else %>
19+
University of Alberta Libraries
20+
<% end %>
21+
</title>
22+
</head>
23+
<body>
24+
25+
<%= yield %>
26+
27+
<!-- Optional JavaScript -->
28+
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
29+
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
30+
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
31+
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
32+
</body>
33+
</html>

0 commit comments

Comments
 (0)