mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00
11 lines
No EOL
255 B
JavaScript
11 lines
No EOL
255 B
JavaScript
Template.page.onCreated(function () {
|
|
Telescope.SEO.set({
|
|
title: Pages.findOne({slug: FlowRouter.getParam("slug")}).title
|
|
});
|
|
});
|
|
|
|
Template.page.helpers({
|
|
page: function () {
|
|
return Pages.findOne({slug: FlowRouter.getParam("slug")});
|
|
}
|
|
}); |