mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00
7 lines
213 B
JavaScript
7 lines
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()
|
||
|
});
|
||
|
});
|