Created
October 5, 2015 23:58
-
-
Save zckly/dec750a144f1921e08fc to your computer and use it in GitHub Desktop.
For part 2 of my Meteor Yelp clone tutorial
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
FlowRouter.route('/', { | |
action: function(params) { | |
BlazeLayout.render("app", {content: "splash"}); //content here will be the initial search. | |
} | |
}); | |
FlowRouter.route('/searchresults', { | |
action: function(params) { | |
BlazeLayout.render("app", {content: "search-results"}); //Results of the search | |
} | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Are you going to continue this tutorial?