Skip to content

Instantly share code, notes, and snippets.

@lvbreda
Created July 31, 2012 22:16
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lvbreda/3221138 to your computer and use it in GitHub Desktop.
Save lvbreda/3221138 to your computer and use it in GitHub Desktop.
Hacky routing
if (Meteor.is_client) {
var Router = Backbone.Router.extend({
routes: {
"" : "main",
":page": "main" //this will be http://your_domain/
},
main: function(page) {
document.body.innerHTML = "";
page = page?page:"index";
var frag = Meteor.ui.render(function () {
var i = Template[page]?Template[page]():"";
return i;
});
document.body.appendChild(frag);
}
});
var app = new Router;
Meteor.startup(function () {
Backbone.history.start({pushState: true});
});
}
<template name="hello">
hello
</template>
<template name="index">
home
</template>
<head>
<title>Stackoverflow</title>
</head>
<body>
</body>
@yozawiratama
Copy link

how navigate to other page without lose session with this solution?

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