-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add upstream application layout for customization
This is being done in a separate commit to clarify what in the layout is being customized.
- Loading branch information
Showing
1 changed file
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<%= render partial: "layouts/head" %> | ||
</head> | ||
<body class="app-theme"> | ||
<%= render partial: "layouts/skip_links" %> | ||
|
||
<div class="wrap-page"> | ||
|
||
<%= render partial: "layouts/global_alert" %> | ||
<%= render partial: "layouts/site_header" %> | ||
<%= render partial: "layouts/site_nav" %> | ||
|
||
<div class="wrap-outer-content layout-band"> | ||
<div class="wrap-content"> | ||
<main id="content-main" class="content-main" role="main"> | ||
<%= render partial: "layouts/flash" %> | ||
<%= yield %> | ||
<%= render partial: "layouts/site_footer" %> | ||
</main> | ||
<!-- close content-main --> | ||
</div> | ||
</div> | ||
|
||
<script src="https://use.fontawesome.com/38304317ff.js"></script> | ||
|
||
<footer> | ||
<%= render partial: "layouts/libraries_footer" %> | ||
<%= render partial: "layouts/institute_footer" %> | ||
</footer> | ||
</div> | ||
<!-- close wrap-page --> | ||
</body> | ||
</html> |