Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

26 строки
532 B

4 лет назад
import "/client/templates/loading.html"
4 лет назад
import "/client/templates/user_page.html"
4 лет назад
import "/client/templates/not_found.html"
4 лет назад
Router.configure({
layoutTemplate: 'mainLayout',
loadingTemplate: 'loading',
4 лет назад
notFoundTemplate: 'notFound',
4 лет назад
waitOn: function () {
return Meteor.subscribe("url_res")
}
})
4 лет назад
// Meteor.subscribe('user_res')
4 лет назад
Router.route("/")
Router.route("/nelson", {name: 'mainItem'})
Router.route("/user/:_id", {
4 лет назад
name: 'userPage'
4 лет назад
})
4 лет назад
Router.onBeforeAction('dataNotFound',{only: 'userPage'})