-
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.
added partials : header, footer, htmlHead;
added main.hbs (not final); edited routes in controllers/index.js; began results.js Relates #11, #12, #13, #14, #15, 30
- Loading branch information
Showing
5 changed files
with
51 additions
and
2 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
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
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,7 @@ | ||
|
||
<footer class="footer"> | ||
<div class="footer__container"> | ||
<p>© 2017 Not Murdoch</p> | ||
<p><a href="#">@dontbuythesun</a></p> | ||
</div> | ||
</footer> |
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,17 @@ | ||
|
||
<header class="navbar"> | ||
<div class="navbar__container"> | ||
<nav class="navbar__nav" role="navigation"> | ||
<ul class="navbar__list"> | ||
<li class="navbar__item"> | ||
<a class="navbar__link | ||
{{#if currentPage.home}} navbar__link--active {{/if}} " href="/">Search</a> | ||
</li> | ||
<li class="navbar__item"> | ||
<a class="navbar__link | ||
{{#if currentPage.showAll}} navbar__link--active {{/if}} " href="/results/all"> Show All</a> | ||
</li> | ||
</ul> | ||
</nav> | ||
</div> | ||
</header> |
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,10 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | ||
<link rel="stylesheet" href="/css/styles.css"> | ||
<title>My Space. It's Mine.</title> | ||
</head> |