Skip to content

Instantly share code, notes, and snippets.

@zckly
Created October 5, 2015 23:58
Show Gist options
  • Save zckly/dec750a144f1921e08fc to your computer and use it in GitHub Desktop.
Save zckly/dec750a144f1921e08fc to your computer and use it in GitHub Desktop.
For part 2 of my Meteor Yelp clone tutorial
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
}
})
@lhaig
Copy link

lhaig commented Nov 9, 2015

Are you going to continue this tutorial?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment