mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
7 lines
No EOL
213 B
JavaScript
7 lines
No EOL
213 B
JavaScript
Template.user_profile.onCreated(function () {
|
|
var user = this.data.user;
|
|
Telescope.SEO.set({
|
|
title: user.getDisplayName(),
|
|
description: i18n.t('the_profile_of') + ' ' + user.getDisplayName()
|
|
});
|
|
}); |