-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create 0_research_page_template.html
- Loading branch information
Showing
1 changed file
with
29 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,29 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<script src="components/header.js" type="text/javascript" defer></script> | ||
<script src="components/navigation.js" type="text/javascript" defer></script> <!-- edit this .js file to add this page to the navigation --> | ||
<script src="components/footer.js" type="text/javascript" defer></script> | ||
|
||
<header-component></header-component> | ||
|
||
<body> | ||
<navigation-component></navigation-component> | ||
|
||
<div class="breadcrumbs margin-bottom-40"> | ||
<div class="container"> | ||
<h1 class="pull-left">Page Title</h1> <!-- change page title here --> | ||
</div> | ||
</div> | ||
|
||
<!--=== Content Part ===--> | ||
<div class="container"> | ||
|
||
</div> | ||
|
||
<footer-component></footer-component> | ||
|
||
<script type="text/javascript" src="assets/css/jquery-1.10.2.min.js"></script> | ||
<script type="text/javascript" src="assets/css/hover-dropdown.min.js"></script> | ||
|
||
</body> | ||
</html> |