-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
55 additions
and
31 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
// exports.get = (req, res) => { | ||
// res.render("userProfilePage", { layout: "userProfile" }); | ||
// }; |
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,13 @@ | ||
{{!-- <!DOCTYPE html> | ||
<html lang="en"> | ||
{{> htmlHead}} | ||
<body class="flex-body"> | ||
<div class="container-content"> | ||
{{> header}} | ||
{{{ body }}} | ||
</div> | ||
</body> | ||
{{> footer}} | ||
</html> --}} |
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 |
---|---|---|
@@ -1,11 +1,11 @@ | ||
<div class="container-main"> | ||
<h1 class="sub-title">Search</h1> | ||
<p class="main-paragraph">Here is a list of buddies, based on your search preferences</p> | ||
{{> matchedBuddy }} | ||
{{> matchedBuddy }} | ||
{{> matchedBuddy }} | ||
{{> matchedBuddy }} | ||
{{> matchedBuddy }} | ||
{{> matchedBuddy }} | ||
{{#each usersArr}} | ||
|
||
{{> matchedBuddy profile=this}} | ||
|
||
{{else}} | ||
<h3>oops, there are no profiles that match those search Preferences</h3> | ||
{{/each}} | ||
</div> |
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,17 @@ | ||
{{!-- <img class='arrow-icon' src="./assets/right-arrow.png" alt="arrow"> | ||
<h1 class="sub-title">Profile</h1> | ||
<img src="./assets/profile-pic.png" alt="Ryan" class="profile-img"> | ||
<p class="main-paragraph">Ryan McAvoy, 28</p> | ||
<div class="container"> | ||
<p class="p-border">Morning</p> | ||
<p class="p-border">Beginner</p> | ||
<p class="p-border">Lose Weight</p> | ||
<p class="p-border">Build Muscle</p> | ||
</div> | ||
<input type="text" placeholder="BIO..." class="input-box"> | ||
<div class="container-btn"> | ||
<button class="btn__round">Maybe Not</button> | ||
<button class="btn__round">GymBuddy</button> | ||
</div> --}} |