Last active
April 16, 2023 02:50
-
-
Save pinzonjulian/5b9d4f2430524eb2764ac9256cd953da to your computer and use it in GitHub Desktop.
Application layout: full on spaghetti!
This file contains hidden or 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<!-- ... --> | |
</head> | |
<body> | |
<%= if current_user.signed_in? %> | |
<%= if current_page?(booking_rides_path) %> | |
<% end %> | |
<%= if current_page?(dashboard_path) %> | |
<%= yield %> | |
<% else %> | |
<%= yield %> | |
<% end %> | |
<% else %> | |
<!-- Public nav--> | |
<%= yield %> | |
<% end %> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment